feat(nginx): update nftables rule to allow QUIC

This commit is contained in:
NaeiKinDus 2025-04-12 00:00:00 +00:00
parent 1c625d2d84
commit e12cd90d34
Signed by: WoodSmellParticle
GPG key ID: 8E52ADFF7CA8AE56

View file

@ -1,9 +1,9 @@
table inet filter { table inet filter {
chain input { chain input {
meta nfproto { ipv4, ipv6 } tcp dport { http, https } accept meta l4proto { tcp, udp } th dport { http, https } accept
} }
chain output { chain output {
meta nfproto { ipv4, ipv6 } tcp sport { http, https } accept meta l4proto { tcp, udp } th sport { http, https } accept
} }
} }