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