From 65741b73f06cd861096404b6564c5015e64dab22 Mon Sep 17 00:00:00 2001 From: Codex Date: Wed, 1 Jul 2026 12:22:16 +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";