Merge branch 'v3.0' of github.com:traefik/traefik
This commit is contained in:
commit
fe780c84de
2 changed files with 17 additions and 3 deletions
|
@ -266,9 +266,8 @@ func (r *Router) SetHTTPSForwarder(handler tcp.Handler) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// muxerHTTPS only contains single HostSNI rules (and no other kind of rules),
|
rule := "HostSNI(`" + sniHost + "`)"
|
||||||
// so there's no need for specifying a priority for them.
|
if err := r.muxerHTTPS.AddRoute(rule, tcpmuxer.GetRulePriority(rule), tcpHandler); err != nil {
|
||||||
if err := r.muxerHTTPS.AddRoute("HostSNI(`"+sniHost+"`)", 0, tcpHandler); err != nil {
|
|
||||||
log.Error().Err(err).Msg("Error while adding route for host")
|
log.Error().Err(err).Msg("Error while adding route for host")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -494,6 +494,21 @@ func Test_Routing(t *testing.T) {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
desc: "HTTPS router && HTTPS CatchAll router",
|
||||||
|
routers: []applyRouter{routerHTTPS, routerHTTPSPathPrefix},
|
||||||
|
checks: []checkCase{
|
||||||
|
{
|
||||||
|
desc: "HTTPS TLS 1.0 request should fail",
|
||||||
|
checkRouter: checkHTTPSTLS10,
|
||||||
|
expectedError: "wrong TLS version",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
desc: "HTTPS TLS 1.2 request should be handled by HTTPS service",
|
||||||
|
checkRouter: checkHTTPSTLS12,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
desc: "All routers, all checks",
|
desc: "All routers, all checks",
|
||||||
routers: []applyRouter{routerTCPCatchAll, routerHTTP, routerHTTPS, routerTCPTLS, routerTCPTLSCatchAll},
|
routers: []applyRouter{routerTCPCatchAll, routerHTTP, routerHTTPS, routerTCPTLS, routerTCPTLSCatchAll},
|
||||||
|
|
Loading…
Reference in a new issue