From f5a27475cce3c6b574fab69da2cf40ffff2bd5ec Mon Sep 17 00:00:00 2001 From: enisn Date: Tue, 12 Oct 2021 15:18:25 +0300 Subject: [PATCH] Add OrderingService to WebPublicGateway --- .../EShopOnAbp.WebPublicGateway/appsettings.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/gateways/web-public/src/EShopOnAbp.WebPublicGateway/appsettings.json b/gateways/web-public/src/EShopOnAbp.WebPublicGateway/appsettings.json index c4f7e7c5..1e8dea1a 100644 --- a/gateways/web-public/src/EShopOnAbp.WebPublicGateway/appsettings.json +++ b/gateways/web-public/src/EShopOnAbp.WebPublicGateway/appsettings.json @@ -69,6 +69,19 @@ ], "UpstreamPathTemplate": "/api/basket/{everything}", "UpstreamHttpMethod": [ "Put", "Delete", "Get", "Post" ] + }, + { + "ServiceName": "Ordering Service", + "DownstreamPathTemplate": "/api/ordering/{everything}", + "DownstreamScheme": "https", + "DownstreamHostAndPorts": [ + { + "Host": "localhost", + "Port": 44356 + } + ], + "UpstreamPathTemplate": "/api/ordering/{everything}", + "UpstreamHttpMethod": [ "Put", "Delete", "Get", "Post" ] } ], "GlobalConfiguration": {