Initial commit

This commit is contained in:
2026-06-24 17:29:12 -04:00
commit 72b96c06a4
15 changed files with 470 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
---
- name: Validate nginx configuration
ansible.builtin.command: nginx -t
changed_when: false
become: true
- name: Reload nginx
ansible.builtin.service:
name: nginx
state: reloaded
become: true