summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/caddyhttp/app.go')
-rw-r--r--modules/caddyhttp/app.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/caddyhttp/app.go b/modules/caddyhttp/app.go
index 8e7f3ea..f695276 100644
--- a/modules/caddyhttp/app.go
+++ b/modules/caddyhttp/app.go
@@ -27,6 +27,8 @@ import (
"github.com/caddyserver/caddy/v2/modules/caddytls"
"github.com/lucas-clemente/quic-go/http3"
"go.uber.org/zap"
+ "golang.org/x/net/http2"
+ "golang.org/x/net/http2/h2c"
)
func init() {
@@ -282,6 +284,14 @@ func (app *App) Start() error {
Handler: srv,
}
+ // enable h2c if configured
+ if srv.AllowH2C {
+ h2server := &http2.Server{
+ IdleTimeout: time.Duration(srv.IdleTimeout),
+ }
+ s.Handler = h2c.NewHandler(srv, h2server)
+ }
+
for _, lnAddr := range srv.Listen {
listenAddr, err := caddy.ParseNetworkAddress(lnAddr)
if err != nil {