From 0caf77b5424b4f2f8cc7f98492e1bee8b7cf0a0b Mon Sep 17 00:00:00 2001 From: MrPiglr Date: Thu, 12 Feb 2026 13:48:21 -0700 Subject: [PATCH] fix(railway): change healthcheck path to /health - Change from '/' to '/health' to avoid static file catch-all - Root '/' is caught by serveStatic() in production - /health endpoint returns JSON status correctly --- railway.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/railway.json b/railway.json index e0d60ae..47e9e05 100644 --- a/railway.json +++ b/railway.json @@ -6,7 +6,7 @@ }, "deploy": { "startCommand": "npm start", - "healthcheckPath": "/", + "healthcheckPath": "/health", "healthcheckTimeout": 100, "restartPolicyType": "ON_FAILURE", "restartPolicyMaxRetries": 10