webapp/nextcloud : Change default data directory to be outside web root

This commit is contained in:
Ludovic Poujol 2023-01-13 11:04:32 +01:00
parent 68017d8db9
commit dcc378776c
2 changed files with 2 additions and 1 deletions

View file

@ -18,6 +18,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* Use systemd module instead of command
* Removed all "warn: False" args in command, shell and other modules as it's been deprecated and will give a hard fail in ansible-core 2.14.0.
* webapp/nextcloud : Change default data directory to be outside web root
### Fixed

View file

@ -9,7 +9,7 @@ nextcloud_domains: []
nextcloud_home: "/home/{{ nextcloud_user }}"
nextcloud_webroot: "{{ nextcloud_home }}/nextcloud"
nextcloud_data: "{{ nextcloud_webroot }}/data"
nextcloud_data: "{{ nextcloud_home }}/data"
nextcloud_db_user: "{{ nextcloud_user }}"
nextcloud_db_name: "{{ nextcloud_instance_name }}"