feat(nginx): update nftables rule to allow QUIC
This commit is contained in:
parent
1c625d2d84
commit
e12cd90d34
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue