21 lines
564 B
YAML
21 lines
564 B
YAML
# vim:ft=ansible:
|
|
nextcloud_installation_dir: /var/www/nc.desu.ltd
|
|
nextcloud_data_dir: /srv/desu.ltd/nc
|
|
nextcloud_admin_user: admin
|
|
nextcloud_admin_pass: "{{ secret_nextcloud_admin_pass }}"
|
|
nextcloud_version: 19
|
|
nextcloud_urls:
|
|
- http://nc.desu.ltd:80
|
|
- https://nc.desu.ltd:443
|
|
nextcloud_config:
|
|
system:
|
|
trusted_domains:
|
|
"{{ nextcloud_urls | map('urlsplit', 'hostname') | list }}"
|
|
nextcloud_database:
|
|
backend: pgsql
|
|
name: nextcloud-desultd
|
|
user: nextcloud-desultd
|
|
pass: "{{ secret_nextcloud_db_pass }}"
|
|
host: 192.168.164.156
|
|
port: 5432
|