1. Updated IdentityUrl, CallbackUrl and XamarinCallback to use HTTPS endpoint

2. Specified kestrel options for SSL
This commit is contained in:
rafsanulhasan 2018-09-01 03:39:43 +06:00
parent 68397e81eb
commit 6226b4a6fa
2 changed files with 57 additions and 41 deletions

View File

@ -1,9 +1,9 @@
{ {
"ConnectionString": "Server=tcp:127.0.0.1,5433;Database=Microsoft.eShopOnContainers.Services.IdentityDb;User Id=sa;Password=Pass@word;", "ConnectionString": "Server=tcp:127.0.0.1,5433;Database=Microsoft.eShopOnContainers.Services.IdentityDb;User Id=sa;Password=Pass@word;",
"IsClusterEnv": "False", "IsClusterEnv": "False",
"MvcClient": "http://localhost:5100", "MvcClient": "https://localhost:4100",
"SpaClient": "http://localhost:5104", "SpaClient": "https://localhost:4104",
"XamarinCallback": "http://localhost:5105/xamarincallback", "XamarinCallback": "https://localhost:4105/xamarincallback",
"UseCustomizationData": false, "UseCustomizationData": false,
"Logging": { "Logging": {
"IncludeScopes": false, "IncludeScopes": false,
@ -21,5 +21,13 @@
"Name": "eshop", "Name": "eshop",
"ClientId": "your-clien-id", "ClientId": "your-clien-id",
"ClientSecret": "your-client-secret" "ClientSecret": "your-client-secret"
},
"Kestrel": {
"Certificates": {
"Default": {
"Path": "./Setup/eshopOnContainers.pfx",
"Password": "D0tNet@"
}
}
} }
} }

View File

@ -1,7 +1,7 @@
{ {
"IdentityUrl": "http://localhost:5105", "IdentityUrl": "https://localhost:4105",
"MarketingUrl": "http://localhost:5110", "MarketingUrl": "http://localhost:5110",
"CallBackUrl": "http://localhost:5104/", "CallBackUrl": "https://localhost:4104/",
"PurchaseUrl": "http://localhost:5200", "PurchaseUrl": "http://localhost:5200",
"UseCustomizationData": true, "UseCustomizationData": true,
"IsClusterEnv": "False", "IsClusterEnv": "False",
@ -16,5 +16,13 @@
}, },
"ApplicationInsights": { "ApplicationInsights": {
"InstrumentationKey": "" "InstrumentationKey": ""
},
"Kestrel": {
"Certificates": {
"Default": {
"Path": "./Setup/eShopOnContainers.pfx",
"Password": "D0tNet@"
}
}
} }
} }