1. Added Allowed Hosts
2. Updated IdentityUrl and CallbackUrl to secured endpoint 3. Added Kestrel HTTPS options: Certificate (.pfx) path and password
This commit is contained in:
parent
477fbdc97b
commit
a336a2b1cd
@ -1,10 +1,11 @@
|
|||||||
{
|
{
|
||||||
|
"AllowedHosts": "*",
|
||||||
"CatalogUrl": "http://localhost:5101",
|
"CatalogUrl": "http://localhost:5101",
|
||||||
"OrderingUrl": "http://localhost:5102",
|
"OrderingUrl": "http://localhost:5102",
|
||||||
"BasketUrl": "http://localhost:5103",
|
"BasketUrl": "http://localhost:5103",
|
||||||
"MarketingUrl": "http://localhost:5110",
|
"MarketingUrl": "http://localhost:5110",
|
||||||
"IdentityUrl": "http://localhost:5105",
|
"IdentityUrl": "https://localhost:4105",
|
||||||
"CallBackUrl": "http://localhost:5100/",
|
"CallBackUrl": "https://localhost:4100/",
|
||||||
"LocationsUrl": "http://localhost:5109/",
|
"LocationsUrl": "http://localhost:5109/",
|
||||||
"IsClusterEnv": "False",
|
"IsClusterEnv": "False",
|
||||||
"UseResilientHttp": "True",
|
"UseResilientHttp": "True",
|
||||||
@ -23,5 +24,13 @@
|
|||||||
"InstrumentationKey": ""
|
"InstrumentationKey": ""
|
||||||
},
|
},
|
||||||
"HttpClientRetryCount": 8,
|
"HttpClientRetryCount": 8,
|
||||||
"HttpClientExceptionsAllowedBeforeBreaking": 7
|
"HttpClientExceptionsAllowedBeforeBreaking": 7,
|
||||||
|
"Kestrel": {
|
||||||
|
"Certificates": {
|
||||||
|
"Default": {
|
||||||
|
"Path": "./synergydev.pfx",
|
||||||
|
"Password": "RH@ssl2018"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user