diff --git a/tools/reverse-proxy/default.conf b/tools/reverse-proxy/default.conf index aca6ea3..6efcf5d 100644 --- a/tools/reverse-proxy/default.conf +++ b/tools/reverse-proxy/default.conf @@ -19,6 +19,13 @@ server { add_header Content-Type text/plain; } + # Healthcheck endpoint + location /ops/healthcheck { + access_log off; + return 200 "healthy\n"; + add_header Content-Type text/plain; + } + # Serve static files location / { root /usr/share/nginx/html;