From fe09c5c7ae17dbc9c962efd4615053ec27045283 Mon Sep 17 00:00:00 2001 From: TekH Date: Sun, 28 Jun 2026 20:31:52 +0200 Subject: [PATCH] Update auth-hub primary destination address in yarp.json Replaced the `Address` value for the `primary` destination in the `auth-hub` cluster within `yarp.json`. The previous value (`https://localhost:9090`) was updated to `http://172.24.12.39:9090`, reflecting a move from a local development environment to a specific networked environment. The protocol was also changed from `https` to `http`. --- EnvelopeGenerator.Server/EnvelopeGenerator.Server/yarp.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvelopeGenerator.Server/EnvelopeGenerator.Server/yarp.json b/EnvelopeGenerator.Server/EnvelopeGenerator.Server/yarp.json index d5bd365b..a2c36687 100644 --- a/EnvelopeGenerator.Server/EnvelopeGenerator.Server/yarp.json +++ b/EnvelopeGenerator.Server/EnvelopeGenerator.Server/yarp.json @@ -30,7 +30,7 @@ "auth-hub": { "Destinations": { "primary": { - "Address": "https://localhost:9090" + "Address": "http://172.24.12.39:9090" } } }