Adding firewall port forward tasks

This commit is contained in:
Mike Holloway 2024-08-21 07:16:26 -04:00
parent 8c7af4bde8
commit 646e24d465

View File

@ -7,3 +7,17 @@
- podman-host
- repo-epel
- certbot
tasks:
- name: Root port forwards for web traffic.
firewalld:
rich_rule: rule family=ipv4 forward-port port=443 protocol=tcp to-port=4443
zone: public
permanent: true
immediate: true
state: enabled
firewalld:
rich_rule: rule family=ipv4 forward-port port=80 protocol=tcp to-port=8080
zone: public
permanent: true
immediate: true
state: enabled