--- - 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