lab-ansible/roles/apps/tasks/extra_tasks/nextcloud.yml
2023-11-05 18:27:49 +01:00

25 lines
665 B
YAML

# vim: ft=yaml.ansible
# code: language=ansible
---
- name: Create subfolder for Nextcloud Apache2 config
ansible.builtin.file:
name: "{{ apps_data_root }}/nextcloud/data/apache2"
owner: root
mode: u=rwx,g=rx,o=rx
state: directory
- name: Create subfolder for Nextcloud data
ansible.builtin.file:
name: "{{ apps_data_root }}/nextcloud/data/app"
owner: root
group: '33'
mode: u=rwx,g=rx,o=rx
state: directory
- name: Copy Apache2 remoteip config file
ansible.builtin.template:
src: nextcloud/remoteip.conf.j2
dest: "{{ apps_data_root }}/nextcloud/data/apache2/remoteip.conf"
owner: root
mode: u=rw,g=r,o=r