Added HTTPS redirection
This commit is contained in:
parent
b40b652285
commit
03c77607b4
@ -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
28
templates/config.php.j2
Normal 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 (
|
||||
),
|
||||
);
|
Loading…
x
Reference in New Issue
Block a user