From 1ded94388e8773e64231e198f1a32e17c4b25ab9 Mon Sep 17 00:00:00 2001 From: dtarkent2-sys Date: Fri, 20 Feb 2026 03:17:55 +0000 Subject: [PATCH] Fix healthcheck path to /health for FastAPI --- railway.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/railway.toml b/railway.toml index edbee221..676581a2 100644 --- a/railway.toml +++ b/railway.toml @@ -3,6 +3,6 @@ builder = "DOCKERFILE" dockerfilePath = "Dockerfile" [deploy] -healthcheckPath = "/" +healthcheckPath = "/health" restartPolicyType = "ON_FAILURE" restartPolicyMaxRetries = 3