Re-add https in log message
This commit is contained in:
parent
875c758ba2
commit
fe78d6d47f
2
app.go
2
app.go
|
@ -418,7 +418,7 @@ func Serve() {
|
|||
log.Error("Unable to start redirect server: %v", err)
|
||||
}()
|
||||
|
||||
log.Info("Serving on %s:443", bindAddress)
|
||||
log.Info("Serving on https://%s:443", bindAddress)
|
||||
log.Info("---")
|
||||
err = http.ListenAndServeTLS(
|
||||
fmt.Sprintf("%s:443", bindAddress), app.cfg.Server.TLSCertPath, app.cfg.Server.TLSKeyPath, nil)
|
||||
|
|
Loading…
Reference in New Issue