Update StatusPageApiInternalUrl to use correct internal route for server communication

This commit is contained in:
Nawaz Dhandala
2026-01-08 19:58:03 +00:00
parent 918fda707e
commit 6134fa467c

View File

@@ -398,10 +398,12 @@ export const StatusPageApiClientUrl: URL = new URL(
);
// Internal URL for server-to-server communication (uses internal Docker hostname)
// Note: The internal path is /api/status-page (not /status-page-api) because
// /status-page-api is the external route that Nginx rewrites to /api/status-page
export const StatusPageApiInternalUrl: URL = new URL(
Protocol.HTTP,
AppApiHostname.toString(),
new Route(StatusPageApiRoute.toString()),
new Route("/api/status-page"),
);
export const DashboardClientUrl: URL = new URL(