Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- ---
-
- - 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
|