ansible-role-nextcloud/tasks/apache2_template.yaml
2022-04-10 17:27:17 -04:00

21 lines
565 B
YAML

---
- name: Write directory-based nextcloud.conf file
ansible.builtin.template:
src: apache2_directory_nextcloud.conf.j2
dest: "{{ nextcloud_apache2_config_path }}"
mode: '0644'
become: true
when: not nextcloud_apache2_virtualhost
notify:
- Enable Nextcloud site
- name: Write virtualhost nextcloud.conf file
ansible.builtin.template:
src: apache2_virtualhost_nextcloud.conf.j2
dest: "{{ nextcloud_apache2_config_path }}"
mode: '0644'
become: true
when: nextcloud_apache2_virtualhost
notify:
- Enable Nextcloud site