Fix "Fix http proxy server"

This commit is contained in:
世界 2023-08-02 18:59:22 +08:00
parent 83ce0be4d4
commit c6a69b4912
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -28,11 +28,6 @@ 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")
@ -89,6 +84,12 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
removeHopByHopHeaders(request.Header)
removeExtraHTTPHostPort(request)
if hostStr := request.Header.Get("Host"); hostStr != "" {
if hostStr != request.URL.Host {
request.Host = hostStr
}
}
if request.URL.Scheme == "" || request.URL.Host == "" {
return responseWith(request, http.StatusBadRequest).Write(conn)
}