diff --git a/ansible_collections/nullified/infrastructure/roles/nginx/templates/ingress_http_nginx.nft.j2 b/ansible_collections/nullified/infrastructure/roles/nginx/templates/ingress_http_nginx.nft.j2 index 9d335fe..27d1fa2 100644 --- a/ansible_collections/nullified/infrastructure/roles/nginx/templates/ingress_http_nginx.nft.j2 +++ b/ansible_collections/nullified/infrastructure/roles/nginx/templates/ingress_http_nginx.nft.j2 @@ -1,9 +1,9 @@ table inet filter { chain input { - meta nfproto { ipv4, ipv6 } tcp dport { http, https } accept + meta l4proto { tcp, udp } th dport { http, https } accept } chain output { - meta nfproto { ipv4, ipv6 } tcp sport { http, https } accept + meta l4proto { tcp, udp } th sport { http, https } accept } }