Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- ---
-
- - name: nextcloud directory
- file:
- path: /var/www/nextcloud
- state: directory
- owner: root
- group: www-data
- mode: 0750
-
- - name: nextcloud subdirectories
- file:
- path: /var/www/nextcloud/{{item}}
- state: directory
- owner: www-data
- group: www-data
- recurse: yes
- with_items:
- - config
- - apps
- - themes
- - updater
-
- - name: nextcloud data directory
- file:
- path: "{{nextcloud_data_directory}}"
- state: directory
- owner: www-data
- group: www-data
- recurse: yes
-
- - name: nextcloud log directory
- file:
- path: /var/log/nextcloud
- state: directory
- owner: www-data
- group: www-data
-
- - name: nextcloud htaccess webserver access
- file:
- path: /var/www/nextcloud/.htaccess
- state: file
- owner: www-data
- group: www-data
- state: touch
|