|
1234567891011121314151617181920212223242526 |
- ---
-
- - name: nextcloud directory access
- file:
- path: /var/www/nextcloud/{{item}}
- state: directory
- owner: www-data
- group: www-data
- recurse: yes
- with_items:
- - data
- - config
-
- - name: nextcloud htaccess file access
- file:
- path: /var/www/nextcloud/.htaccess
- state: file
- owner: www-data
- group: www-data
-
- - name: nextcloud log directory
- file:
- path: /var/log/nextcloud
- state: directory
- owner: www-data
- group: www-data
|