From ede6ca0ce0b08aa1c293328e2781070aeb1c852c Mon Sep 17 00:00:00 2001 From: Lougarou Date: Fri, 24 Apr 2026 13:37:01 +0200 Subject: [PATCH] Fix default listen port to match deployment assets appsettings.json hardcoded Urls to http://*:5098, which overrode the ASPNETCORE_URLS env var set by the Dockerfile and caused the container to listen on 5098 while docker-compose, the Helm chart, prometheus scrape config and docs all expected 5000. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/replicator/appsettings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/replicator/appsettings.json b/src/replicator/appsettings.json index 1075f15e..9c317176 100644 --- a/src/replicator/appsettings.json +++ b/src/replicator/appsettings.json @@ -1,4 +1,4 @@ { "AllowedHosts": "*", - "Urls": "http://*:5098" + "Urls": "http://*:5000" }