From 4dc642ad549df8383bd11130e476b13fa96d25cf Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 18 Nov 2025 07:13:52 +0000 Subject: [PATCH] fix: update nginx health check to use port 8080 to avoid redirect loop --- backend/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/docker-compose.yml b/backend/docker-compose.yml index 29717d8..0b66889 100644 --- a/backend/docker-compose.yml +++ b/backend/docker-compose.yml @@ -106,7 +106,7 @@ services: depends_on: - api healthcheck: - test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost/health"] + test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:8080/health"] interval: 30s timeout: 10s retries: 3