mirror of
https://github.com/traefik/traefik.git
synced 2025-05-05 15:33:01 +00:00
Co-authored-by: Kevin Pollet <pollet.kevin@gmail.com> Co-authored-by: Julien Salleyron <julien.salleyron@gmail.com> Co-authored-by: Michael <michael.matur@gmail.com>
22 lines
518 B
Go
22 lines
518 B
Go
package init
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
// This makes use of the GODEBUG flag `http2xconnect` to deactivate the connect setting for HTTP2 by default.
|
|
// This type of upgrade is yet incompatible with `net/http` http1 reverse proxy.
|
|
// Please see https://github.com/golang/go/issues/71128#issuecomment-2574193636.
|
|
func init() {
|
|
goDebug := os.Getenv("GODEBUG")
|
|
if strings.Contains(goDebug, "http2xconnect") {
|
|
return
|
|
}
|
|
|
|
if len(goDebug) > 0 {
|
|
goDebug += ","
|
|
}
|
|
os.Setenv("GODEBUG", goDebug+"http2xconnect=0")
|
|
}
|