diff --git a/nginx.conf b/nginx.conf index fe7dc6c..660cfe0 100644 --- a/nginx.conf +++ b/nginx.conf @@ -58,4 +58,10 @@ server { auth_request /auth; proxy_pass $URL_DOWNLOAD; } + + location = /health { + access_log off; + add_header 'Content-Type' 'application/json'; + return 200 'UP'; + } } \ No newline at end of file