Browse Source

Add OrderingService to WebPublicGateway

pull/9/head
enisn 5 years ago
parent
commit
f5a27475cc
  1. 13
      gateways/web-public/src/EShopOnAbp.WebPublicGateway/appsettings.json

13
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": {

Loading…
Cancel
Save