infrastructure/ansible/roles/ingress/handlers/main.yml
Jake Howard 92052a3d0a
Unify nginx configuration
This creates a simple base configuration skeleton, that other configuration can be easily loaded into.
2023-12-16 17:47:04 +00:00

20 lines
291 B
YAML

- name: restart wireguard
service:
name: wg-quick@wg0
state: restarted
become: true
- name: reload nginx
service:
name: nginx
state: reloaded
become: true
- name: reload nftables
command:
argv:
- nft
- -f
- /etc/nftables.conf
become: true