ansible-role-nginx/handlers/main.yml
Alessandro Fael Garcia e2b83ac215 Initial role commit
2018-01-10 14:40:01 -08:00

13 lines
192 B
YAML

---
# Start NGINX
- name: "(All OSs) Start NGINX"
service:
name: nginx
state: started
# Reload NGINX
- name: "(All OSs) Reload NGINX"
service:
name: nginx
state: reloaded