|
|
@ -34,8 +34,13 @@ nextcloud_admin_user: "admin"
|
|
|
|
nextcloud_admin_pass: "{{ lookup('password', 'credentials/' + inventory_hostname + '/' + domain + '/' + nextcloud_admin_user + ' length=80') }}"
|
|
|
|
nextcloud_admin_pass: "{{ lookup('password', 'credentials/' + inventory_hostname + '/' + domain + '/' + nextcloud_admin_user + ' length=80') }}"
|
|
|
|
|
|
|
|
|
|
|
|
default_phone_region: "DE"
|
|
|
|
default_phone_region: "DE"
|
|
|
|
|
|
|
|
files_chunk_size: "{{ 10 * 1024 * 1024 }}" # bytes
|
|
|
|
reset_password_link: "disabled" # "" means internal enabled, "disabled" means disabled, <link> means using this link
|
|
|
|
reset_password_link: "disabled" # "" means internal enabled, "disabled" means disabled, <link> means using this link
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nginx_max_size: "{{ php_post_max_size|int + 4 * 1024 }}" # appending encryption overhead
|
|
|
|
|
|
|
|
php_post_max_size: "{{ php_upload_max_size|int + 4 * 1024 }}" # appending HTTP overhead
|
|
|
|
|
|
|
|
php_upload_max_size: "{{ files_chunk_size|int + 16 * 1024 }}" # appending internal overhead
|
|
|
|
|
|
|
|
|
|
|
|
import_config:
|
|
|
|
import_config:
|
|
|
|
system:
|
|
|
|
system:
|
|
|
|
# domain
|
|
|
|
# domain
|
|
|
@ -60,6 +65,9 @@ import_config:
|
|
|
|
port: 0
|
|
|
|
port: 0
|
|
|
|
# user experience
|
|
|
|
# user experience
|
|
|
|
default_phone_region: "{{ default_phone_region }}"
|
|
|
|
default_phone_region: "{{ default_phone_region }}"
|
|
|
|
|
|
|
|
apps:
|
|
|
|
|
|
|
|
files:
|
|
|
|
|
|
|
|
max_chunk_size: "{{ files_chunk_size }}"
|
|
|
|
|
|
|
|
|
|
|
|
enabled_apps_list:
|
|
|
|
enabled_apps_list:
|
|
|
|
- accessibility
|
|
|
|
- accessibility
|
|
|
|