diff --git a/templates/apache2_ssl_nextcloud.conf.j2 b/templates/apache2_ssl_nextcloud.conf.j2 index 299d88e..c12d3d4 100644 --- a/templates/apache2_ssl_nextcloud.conf.j2 +++ b/templates/apache2_ssl_nextcloud.conf.j2 @@ -1,8 +1,13 @@ # {{ ansible_managed }} + + ServerName {{ nextcloud_subdomain }}.{{ domain_name }} + Redirect permanent / https://{{ nextcloud_subdomain }}.{{ domain_name }}/ + + - ServerName {{ ansible_hostname }}.{{ domain_name }} + ServerName {{ nextcloud_subdomain }}.{{ domain_name }} DocumentRoot {{ nextcloud_www_path }} diff --git a/templates/config.php.j2 b/templates/config.php.j2 new file mode 100644 index 0000000..6bf1cff --- /dev/null +++ b/templates/config.php.j2 @@ -0,0 +1,28 @@ + '', + '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 ( + ), +);