diff --git a/network/files/firewall_pterodactyl-rules.j2 b/network/files/firewall_pterodactyl-rules.j2 index c586799..023f173 100644 --- a/network/files/firewall_pterodactyl-rules.j2 +++ b/network/files/firewall_pterodactyl-rules.j2 @@ -1,6 +1,13 @@ ## This file is managed by Ansible #!/usr/sbin/nft +table inet filter { + chain input { + iifname eth0 tcp dport 8080 accept \ + comment "Accept local connection to wings" + } +} + table ip nat { chain DOCKER {} }