Added HTTPS redirection

This commit is contained in:
Corbin Bartsch 2022-04-13 22:13:43 -04:00
parent b40b652285
commit 03c77607b4
Signed by: coredotbin
GPG Key ID: 32D3B80A08D93212
2 changed files with 34 additions and 1 deletions

View File

@ -1,8 +1,13 @@
# {{ ansible_managed }}
<IfModule mod_ssl.c>
<VirtualHost *:80>
ServerName {{ nextcloud_subdomain }}.{{ domain_name }}
Redirect permanent / https://{{ nextcloud_subdomain }}.{{ domain_name }}/
</VirtualHost>
<VirtualHost *:443>
ServerName {{ ansible_hostname }}.{{ domain_name }}
ServerName {{ nextcloud_subdomain }}.{{ domain_name }}
DocumentRoot {{ nextcloud_www_path }}

28
templates/config.php.j2 Normal file
View File

@ -0,0 +1,28 @@
<?php
$CONFIG = array (
'instanceid' => '',
'passwordsalt' => '',
'secret' => '',
'trusted_domains' =>
array (
0 => '{{ nextcloud_subdomain }}.{{ domain_name }}',
),
'datadirectory' => '{{ nextcloud_data_directory }}',
'dbtype' => '{{ nextcloud_db_type }}',
'version' => '23.0.3.2',
'overwrite.cli.url' => 'http://{{ nextcloud_subdomain }}.{{ domain_name }}',
'dbname' => 'nextcloud',
'dbhost' => '{{ nextcloud_db_host }}:{{ nextcloud_db_port }}',
'dbport' => '',
'dbtableprefix' => 'oc_',
'dbuser' => '{{ nextcloud_db_user }}',
'dbpassword' => '{{ nextcloud_db_pass }}',
'installed' => true,
'twofactor_enforced' => 'true',
'twofactor_enforced_groups' =>
array (
),
'twofactor_enforced_excluded_groups' =>
array (
),
);