Fix postLoadConfig

Signed-off-by: Emile Vauge <emile@vauge.com>
This commit is contained in:
Emile Vauge 2017-04-07 15:48:58 +02:00
parent 69e081f40f
commit ec245d604a
No known key found for this signature in database
GPG key ID: D808B4C167352E59

View file

@ -315,15 +315,16 @@ func (server *Server) postLoadConfig() {
for _, frontend := range configuration.Frontends { for _, frontend := range configuration.Frontends {
// check if one of the frontend entrypoints is configured with TLS // check if one of the frontend entrypoints is configured with TLS
TLSEnabled := false // and is configured with ACME
ACMEEnabled := false
for _, entrypoint := range frontend.EntryPoints { for _, entrypoint := range frontend.EntryPoints {
if server.globalConfiguration.EntryPoints[entrypoint].TLS != nil { if server.globalConfiguration.ACME.EntryPoint == entrypoint && server.globalConfiguration.EntryPoints[entrypoint].TLS != nil {
TLSEnabled = true ACMEEnabled = true
break break
} }
} }
if TLSEnabled { if ACMEEnabled {
for _, route := range frontend.Routes { for _, route := range frontend.Routes {
rules := Rules{} rules := Rules{}
domains, err := rules.ParseDomains(route.Rule) domains, err := rules.ParseDomains(route.Rule)