From 6be3d5373a9220c51d79a4abeb3baed88f1ab5ba Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Mon, 5 May 2025 10:16:27 +0200 Subject: [PATCH] Update API routing and port configuration - Changed `DownstreamPathTemplate` from `/api/Auth/check` to `/api/Auth/sign-flow-gen/login`. - Updated `DownstreamHostAndPorts` port from `7174` to `7192`. - Modified `UpstreamPathTemplate` from `/api/Auth/check` to `/api/Auth/form`. --- ocelot.Development.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ocelot.Development.json b/ocelot.Development.json index 6901aeb..3b31bde 100644 --- a/ocelot.Development.json +++ b/ocelot.Development.json @@ -110,15 +110,15 @@ "UpstreamHttpMethod": [ "Post" ] }, { - "DownstreamPathTemplate": "/api/Auth/check", + "DownstreamPathTemplate": "/api/Auth/sign-flow-gen/login", "DownstreamScheme": "https", "DownstreamHostAndPorts": [ { "Host": "localhost", - "Port": 7174 + "Port": 7192 } ], - "UpstreamPathTemplate": "/api/Auth/check", + "UpstreamPathTemplate": "/api/Auth/form", "UpstreamHttpMethod": [ "Post" ] }, {