From 6cac9db408065b5c666594aff1e193be1bd4936b Mon Sep 17 00:00:00 2001 From: Codex Date: Wed, 1 Jul 2026 12:22:15 +0300 Subject: [PATCH] Add healthcheck endpoint --- nginx.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nginx.conf b/nginx.conf index aab1c08..36bd533 100644 --- a/nginx.conf +++ b/nginx.conf @@ -9,6 +9,11 @@ server { gzip_min_length 1024; gzip_types text/plain text/css application/javascript application/json image/svg+xml; + location = /healthcheck { + add_header Content-Type application/json; + return 200 'ok'; + } + location /assets/ { expires 1y; add_header Cache-Control "public, immutable";