Tweak log message for a wrong host in HTTP-01

Fixes #314
This commit is contained in:
xenolf 2016-11-10 08:24:06 +01:00
parent 7615653a08
commit 2abbe6d836

View file

@ -63,7 +63,7 @@ func (s *HTTPProviderServer) serve(domain, token, keyAuth string) {
w.Write([]byte(keyAuth)) w.Write([]byte(keyAuth))
logf("[INFO][%s] Served key authentication", domain) logf("[INFO][%s] Served key authentication", domain)
} else { } else {
logf("[INFO] Received request for domain %s with method %s", r.Host, r.Method) logf("[WARN] Received request for domain %s with method %s but the domain did not match any challenge. Please ensure your are passing the HOST header properly.", r.Host, r.Method)
w.Write([]byte("TEST")) w.Write([]byte("TEST"))
} }
}) })