Re-add https in log message

This commit is contained in:
Matt Baer 2018-11-27 10:55:43 -05:00
parent 875c758ba2
commit fe78d6d47f
1 changed files with 1 additions and 1 deletions

2
app.go
View File

@ -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)