Skip to content

Commit

Permalink
Patch out listening on 443 to address TykTechnologies#14
Browse files Browse the repository at this point in the history
  • Loading branch information
Cook committed Nov 20, 2017
1 parent e3ef809 commit 96dd62b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ func main() {
}

if config.HttpServerOptions.UseSSL {
log.Info("[MAIN] Broker Listening on :443")
err := http.ListenAndServeTLS(":443", config.HttpServerOptions.CertFile, config.HttpServerOptions.KeyFile, p)
log.Info("[MAIN] Broker Listening on :", listenPort)
err := http.ListenAndServeTLS(listenPort, config.HttpServerOptions.CertFile, config.HttpServerOptions.KeyFile, p)
if err != nil {
log.Fatal("ListenAndServe: ", err)
}
Expand Down

0 comments on commit 96dd62b

Please sign in to comment.