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 4fabd21
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion 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 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 4fabd21

Please sign in to comment.