feat(ansible): Add nginx role handlers

This commit is contained in:
Claude AI
2026-01-06 14:43:37 +00:00
parent 61765fc2c8
commit 181bc406ab

View File

@@ -0,0 +1,17 @@
---
# Nginx handlers
- name: restart nginx
service:
name: nginx
state: restarted
- name: reload nginx
service:
name: nginx
state: reloaded
- name: stop nginx
service:
name: nginx
state: stopped