feat(traefik): add HTTP/3 support with UDP port configuration

- Introduce TRAEFIK_HTTP3_PORT environment variable
- Configure UDP port binding for HTTP/3
- Enable HTTP/3 with advertisedPort in Traefik websecure configuration
This commit is contained in:
Mauricio Siu
2025-03-02 04:35:58 -06:00
parent d2e0536355
commit bf04dfa757
2 changed files with 5 additions and 1 deletions

View File

@@ -251,6 +251,9 @@ export const getDefaultServerTraefikConfig = () => {
},
websecure: {
address: `:${TRAEFIK_SSL_PORT}`,
http3: {
advertisedPort: TRAEFIK_HTTP3_PORT,
},
http: {
tls: {
certResolver: "letsencrypt",