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:
rafsanulhasan 2018-09-01 03:14:21 +06:00
parent 477fbdc97b
commit a336a2b1cd

View File

@ -1,27 +1,36 @@
{ {
"CatalogUrl": "http://localhost:5101", "AllowedHosts": "*",
"OrderingUrl": "http://localhost:5102", "CatalogUrl": "http://localhost:5101",
"BasketUrl": "http://localhost:5103", "OrderingUrl": "http://localhost:5102",
"MarketingUrl": "http://localhost:5110", "BasketUrl": "http://localhost:5103",
"IdentityUrl": "http://localhost:5105", "MarketingUrl": "http://localhost:5110",
"CallBackUrl": "http://localhost:5100/", "IdentityUrl": "https://localhost:4105",
"LocationsUrl": "http://localhost:5109/", "CallBackUrl": "https://localhost:4100/",
"IsClusterEnv": "False", "LocationsUrl": "http://localhost:5109/",
"UseResilientHttp": "True", "IsClusterEnv": "False",
"UseLoadTest": false, "UseResilientHttp": "True",
"ActivateCampaignDetailFunction": "False", "UseLoadTest": false,
"UseCustomizationData": false, "ActivateCampaignDetailFunction": "False",
"Logging": { "UseCustomizationData": false,
"IncludeScopes": false, "Logging": {
"LogLevel": { "IncludeScopes": false,
"Default": "Trace", "LogLevel": {
"System": "Information", "Default": "Trace",
"Microsoft": "Information" "System": "Information",
} "Microsoft": "Information"
}, }
"ApplicationInsights": { },
"InstrumentationKey": "" "ApplicationInsights": {
}, "InstrumentationKey": ""
"HttpClientRetryCount": 8, },
"HttpClientExceptionsAllowedBeforeBreaking": 7 "HttpClientRetryCount": 8,
"HttpClientExceptionsAllowedBeforeBreaking": 7,
"Kestrel": {
"Certificates": {
"Default": {
"Path": "./synergydev.pfx",
"Password": "RH@ssl2018"
}
}
}
} }