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

25 lines
648 B
YAML

---
- name: Write directory-based nextcloud.conf file
ansible.builtin.template:
<<<<<<< HEAD
src: dhcpd.conf.j2
=======
src: apache2_directory_nextcloud.conf.j2
>>>>>>> 46b6f98 (Fixed template paths)
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