mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-31 09:59:41 +07:00
8 lines
230 B
YAML
8 lines
230 B
YAML
- name: Deploy Nginx sites configuration
|
|
template:
|
|
src: mysite.j2
|
|
dest: "/etc/nginx/sites-enabled/mysite"
|
|
notify: restart nginx
|
|
|
|
- name: Remove defaults
|
|
file: path="/etc/nginx/sites-enabled/default" state=absent |