ansible-role-nginx/handlers/main.yml

13 lines
192 B
YAML
Raw Normal View History

2018-01-10 23:40:01 +01:00
---
# Start NGINX
- name: "(All OSs) Start NGINX"
service:
name: nginx
state: started
# Reload NGINX
- name: "(All OSs) Reload NGINX"
service:
name: nginx
state: reloaded