From 988cd66d2ed25f158710b0634395cb24480072e0 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 9 Nov 2025 03:28:34 +0000 Subject: [PATCH] Update bot health endpoint to Railway internal URL cgen-4aaf873d99324b608959de1052a4ba31 --- server/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/index.ts b/server/index.ts index 986d9b93..44d2b831 100644 --- a/server/index.ts +++ b/server/index.ts @@ -1044,7 +1044,7 @@ export function createServer() { // Discord Bot Health Check (proxy to avoid CSP issues) app.get("/api/discord/bot-health", async (req, res) => { try { - const botHealthUrl = "http://144.217.139.239:8044/health"; + const botHealthUrl = "https://aethex.railway.internal:8044/health"; const response = await fetch(botHealthUrl, { method: "GET",