ansible-collection-nextcloud/roles/nextcloud/templates/ansible.config.php.j2

9 lines
451 B
Text
Raw Normal View History

<?php
$CONFIG = array (
'allow_user_to_change_display_name' => {{ nextcloud_oidc_allow_user_change_display_name | default('false') }},
'skeletondirectory' => '',
'templatedirectory' => '',
'hide_login_form' => {{ nextcloud_oidc_hide_password_form | default('false') }},
'maintenance_window_start' => {{ nextcloud_maintenance_window_start | default(2) }},
'default_phone_region' => '{{ nextcloud_default_phone_region | default('DE') }}',
);