Skip to content

Commit

Permalink
fix client unsupported h2 protocol when only 443 activated (#3009)
Browse files Browse the repository at this point in the history
When I remove 80 http port in Caddyfile, netbird client cannot connect server:443. Logs show error below:
{"level":"debug","ts":1733809631.4012625,"logger":"http.stdlib","msg":"http: TLS handshake error from redacted:41580: tls: client requested unsupported application protocols ([h2])"}
I wonder here h2 protocol is absent.
  • Loading branch information
V-E-O authored Dec 16, 2024
1 parent 9eff58a commit 703647d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infrastructure_files/getting-started-with-zitadel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ renderCaddyfile() {
{
debug
servers :80,:443 {
protocols h1 h2c h3
protocols h1 h2c h2 h3
}
}
Expand Down

0 comments on commit 703647d

Please sign in to comment.