public-health-ch/ansible/roles/web/tasks/nginx.yaml
2017-04-24 18:09:26 +02:00

18 lines
419 B
YAML

---
# Note that changing the domain leaves the old config in place
- name: Copy Nginx site config
become: true
template:
src: nginx.conf.j2
dest: /etc/nginx/sites-available/{{ domain }}
- name: Activate Nginx site config
become: true
file:
state: link
src: /etc/nginx/sites-available/{{ domain }}
path: /etc/nginx/sites-enabled/{{ domain }}
notify:
- validate nginx
- reload nginx