diff --git a/imageproxy.go b/imageproxy.go index b06329b..22ecde4 100644 --- a/imageproxy.go +++ b/imageproxy.go @@ -99,7 +99,7 @@ func (p *Proxy) ServeHTTP(w http.ResponseWriter, r *http.Request) { return // ignore favicon requests } - if r.URL.Path == "/health-check" { + if r.URL.Path == "/" || r.URL.Path == "/health-check" { fmt.Fprint(w, "OK") return }