Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- ---
-
- - 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
|