Fix http proxy server

This commit is contained in:
世界 2023-07-31 08:57:58 +08:00
parent 32f9f628a0
commit 221477cf17
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -28,6 +28,11 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
return E.Cause(err, "read http request")
}
if hostStr := request.Header.Get("Host"); hostStr != "" {
request.Host = hostStr
request.URL.Host = hostStr
}
if authenticator != nil {
var authOk bool
authorization := request.Header.Get("Proxy-Authorization")