From dd01b571ad08a9fac63faff91ddc4a66c400c9c2 Mon Sep 17 00:00:00 2001 From: fluf Date: Fri, 8 Jun 2018 19:43:53 +0000 Subject: [PATCH] fix typo --- cmd/web.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,