Add www role

This commit is contained in:
polyfloyd 2023-09-10 14:11:21 +02:00
parent 1bab3d478d
commit 03780abf01
12 changed files with 313 additions and 0 deletions

View file

@ -0,0 +1,21 @@
---
- name: Install dependencies
apt:
name:
- php-fpm
- name: Allow HTTP/HTTPS
iptables:
chain: INPUT
protocol: tcp
destination_port: "{{ item.port }}"
ctstate: NEW
jump: ACCEPT
ip_version: "{{ item.ip }}"
action: insert
with_items:
- { ip: ipv4, port: 80 }
- { ip: ipv4, port: 443 }
- { ip: ipv6, port: 80 }
- { ip: ipv6, port: 443 }
notify: persist iptables