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

14 lines
273 B
YAML

---
- name: Write nginx.conf file
ansible.builtin.template:
<<<<<<< HEAD
src: nginx.conf
=======
src: nginx.conf.j2
>>>>>>> 46b6f98 (Fixed template paths)
dest: "{{ nextcloud_nginx_config_path }}"
mode: '0644'
become: true
notify:
- Restart nginx