From 8be1f0ea668492000cdefbd937e0359bdc24bfc1 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Sat, 11 Jan 2020 00:33:47 -0700 Subject: http: Ensure primary routes always get compiled (fix #2972) Including servers for HTTP->HTTPS redirects which do not get provisioned like the rest. --- modules/caddyhttp/caddyhttp.go | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'modules/caddyhttp/caddyhttp.go') diff --git a/modules/caddyhttp/caddyhttp.go b/modules/caddyhttp/caddyhttp.go index ab217cb..7381e51 100644 --- a/modules/caddyhttp/caddyhttp.go +++ b/modules/caddyhttp/caddyhttp.go @@ -164,6 +164,7 @@ func (app *App) Provision(ctx caddy.Context) error { srv.Listen[i] = lnOut } + primaryRoute := emptyHandler if srv.Routes != nil { err := srv.Routes.Provision(ctx) if err != nil { @@ -171,8 +172,9 @@ func (app *App) Provision(ctx caddy.Context) error { } // pre-compile the handler chain, and be sure to wrap it in our // route handler so that important security checks are done, etc. - srv.primaryHandlerChain = srv.wrapPrimaryRoute(srv.Routes.Compile()) + srv.primaryHandlerChain = srv.Routes.Compile() } + srv.primaryHandlerChain = srv.wrapPrimaryRoute(primaryRoute) if srv.Errors != nil { err := srv.Errors.Routes.Provision(ctx) @@ -504,7 +506,7 @@ func (app *App) automaticHTTPS() error { // if there are HTTP->HTTPS redirects to add, do so now if len(lnAddrRedirRoutes) > 0 { var redirServerAddrs []string - var redirRoutes []Route + var redirRoutes RouteList // for each redirect listener, see if there's already a // server configured to listen on that exact address; if so, @@ -539,11 +541,12 @@ func (app *App) automaticHTTPS() error { // rest of the redirects if len(redirServerAddrs) > 0 { app.Servers["remaining_auto_https_redirects"] = &Server{ - Listen: redirServerAddrs, - Routes: redirRoutes, - tlsApp: tlsApp, // required to solve HTTP challenge - logger: app.logger.Named("log"), - errorLogger: app.logger.Named("log.error"), + Listen: redirServerAddrs, + Routes: redirRoutes, + tlsApp: tlsApp, // required to solve HTTP challenge + logger: app.logger.Named("log"), + errorLogger: app.logger.Named("log.error"), + primaryHandlerChain: redirRoutes.Compile(), } } } -- cgit v1.2.3