Skip to content

Commit

Permalink
enable h2c for vhost server
Browse files Browse the repository at this point in the history
  • Loading branch information
sword-jin committed Dec 13, 2024
1 parent c73096f commit eb7c224
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkg/util/vhost/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ import (

libio "github.com/fatedier/golib/io"
"github.com/fatedier/golib/pool"
"golang.org/x/net/http2"
"golang.org/x/net/http2/h2c"

httppkg "github.com/fatedier/frp/pkg/util/http"
"github.com/fatedier/frp/pkg/util/log"
Expand All @@ -41,7 +43,7 @@ type HTTPReverseProxyOptions struct {
}

type HTTPReverseProxy struct {
proxy *httputil.ReverseProxy
proxy http.Handler
vhostRouter *Routers

responseHeaderTimeout time.Duration
Expand Down Expand Up @@ -138,7 +140,7 @@ func NewHTTPReverseProxy(option HTTPReverseProxyOptions, vhostRouter *Routers) *
_, _ = rw.Write(getNotFoundPageContent())
},
}
rp.proxy = proxy
rp.proxy = h2c.NewHandler(proxy, &http2.Server{})
return rp
}

Expand Down

0 comments on commit eb7c224

Please sign in to comment.