ansible-role-nextcloud-docker/defaults/main.yml

39 lines
1.3 KiB
YAML

---
# defaults file for nextcloud
nextcloud_install_user: '{{ ansible_user }}' # This user must be present on the host
nextcloud_install_path: '/home/{{ nextcloud_install_user }}'
nextcloud_multitenant_label:
nextcloud_mariadb_root_password: changeme
nextcloud_mysql_host: mysqldb
nextcloud_mysql_database: nextcloud
nextcloud_mariadb_user: nextcloud
nextcloud_mariadb_password: nextcloud
nextcloud_admin_user: admin
nextcloud_admin_password: mynextcloud
nextcloud_trusted_domains: localhost
nextcloud_virtual_host: localhost
nextcloud_letsencrypt_host:
nextcloud_letsencrypt_email:
nextcloud_smtp_host:
nextcloud_smtp_secure:
nextcloud_smtp_port: 25
nextcloud_smtp_authtype: PLAIN
nextcloud_smtp_name:
nextcloud_smtp_password:
nextcloud_mail_from_address:
nextcloud_mail_domain:
nextcloud_overwrite_cli_url:
nextcloud_overwrite_host:
nextcloud_overwrite_protocol:
nextcloud_enable_restic_compose_backup: False
nextcloud_restic_aws_access_key_id:
nextcloud_restic_aws_secret_access_key:
nextcloud_restic_repository:
nextcloud_restic_password:
nextcloud_restic_keep_daily: 7
nextcloud_restic_keep_weekly: 4
nextcloud_restic_keep_monthly: 12
nextcloud_restic_keep_yearly: 3
nextcloud_restic_cron_schedule: "0 1 * * *"
# Internal variables
nextcloud_multitenant_postfix: "{{ '_' + nextcloud_multitenant_label if (nextcloud_multitenant_label) else '' }}"