diff --git a/cmd/web.go b/cmd/web.go index 37d21c10e..5d9b3cd15 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -79,7 +79,7 @@ func runLetsEncrypt(listenAddr, domain string, m http.Handler) error { HostPolicy: autocert.HostWhitelist(domain), Cache: autocert.DirCache("https"), } - go http.ListenAndServe(":80", certManager.HTTPHandler(nil)) // all traffic comming into HTTP will be redirect to HTTPS automatically + go http.ListenAndServe(":80", certManager.HTTPHandler(nil)) // all traffic coming into HTTP will be redirect to HTTPS automatically // required for letsencrypt validation server := &http.Server{ Addr: listenAddr,