Support HTTP3

This commit is contained in:
Jake Howard 2025-07-05 14:59:06 +01:00
parent aa5044a208
commit 7d556ce9cb
No known key found for this signature in database
GPG key ID: 57AFB45680EDD477
5 changed files with 18 additions and 0 deletions

View file

@ -49,4 +49,15 @@ resource "hcloud_firewall" "web" {
"::/0"
]
}
# HTTP/3
rule {
direction = "in"
protocol = "udp"
port = "443"
source_ips = [
"0.0.0.0/0",
"::/0"
]
}
}