Browse Source

Update insecure endpoints to SSL/TLS encrypted HTTPS endpoints

pull/737/head
rafsanulhasan 6 years ago
parent
commit
a62648bac9
11 changed files with 15 additions and 15 deletions
  1. +1
    -1
      src/ApiGateways/Mobile.Bff.Shopping/aggregator/appsettings.localhost.json
  2. +1
    -1
      src/ApiGateways/Web.Bff.Shopping/aggregator/appsettings.localhost.json
  3. +1
    -1
      src/Services/Basket/Basket.API/appsettings.json
  4. +3
    -3
      src/Services/Identity/Identity.API/appsettings.json
  5. +1
    -1
      src/Services/Location/Locations.API/appsettings.json
  6. +1
    -1
      src/Services/Marketing/Marketing.API/appsettings.json
  7. +1
    -1
      src/Services/Ordering/Ordering.API/appsettings.json
  8. +1
    -1
      src/Services/Ordering/Ordering.SignalrHub/appsettings.json
  9. +2
    -2
      src/Web/WebMVC/appsettings.json
  10. +2
    -2
      src/Web/WebSPA/appsettings.json
  11. +1
    -1
      src/Web/WebStatus/appsettings.json

+ 1
- 1
src/ApiGateways/Mobile.Bff.Shopping/aggregator/appsettings.localhost.json View File

@ -3,6 +3,6 @@
"basket": "http://localhost:55105", "basket": "http://localhost:55105",
"catalog": "http://localhost:55101", "catalog": "http://localhost:55101",
"orders": "http://localhost:55102", "orders": "http://localhost:55102",
"identity": "http://localhost:55105"
"identity": "https://localhost:54105"
} }
} }

+ 1
- 1
src/ApiGateways/Web.Bff.Shopping/aggregator/appsettings.localhost.json View File

@ -3,6 +3,6 @@
"basket": "http://localhost:55105", "basket": "http://localhost:55105",
"catalog": "http://localhost:55101", "catalog": "http://localhost:55101",
"orders": "http://localhost:55102", "orders": "http://localhost:55102",
"identity": "http://localhost:55105"
"identity": "https://localhost:54105"
} }
} }

+ 1
- 1
src/Services/Basket/Basket.API/appsettings.json View File

@ -7,7 +7,7 @@
"Microsoft": "Information" "Microsoft": "Information"
} }
}, },
"IdentityUrl": "http://localhost:5105",
"IdentityUrl": "https://localhost:4105",
"ConnectionString": "127.0.0.1", "ConnectionString": "127.0.0.1",
"AzureServiceBusEnabled": false, "AzureServiceBusEnabled": false,
"SubscriptionClientName": "Basket", "SubscriptionClientName": "Basket",


+ 3
- 3
src/Services/Identity/Identity.API/appsettings.json 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",
"SpaClient": "http://localhost:5104",
"XamarinCallback": "http://localhost:5105/xamarincallback",
"MvcClient": "https://localhost:4100",
"SpaClient": "https://localhost:4104",
"XamarinCallback": "https://localhost:4105/xamarincallback",
"UseCustomizationData": false, "UseCustomizationData": false,
"Logging": { "Logging": {
"IncludeScopes": false, "IncludeScopes": false,


+ 1
- 1
src/Services/Location/Locations.API/appsettings.json View File

@ -1,7 +1,7 @@
{ {
"ConnectionString": "mongodb://nosql.data", "ConnectionString": "mongodb://nosql.data",
"Database": "LocationsDb", "Database": "LocationsDb",
"IdentityUrl": "http://localhost:5105",
"IdentityUrl": "https://localhost:4105",
"Logging": { "Logging": {
"IncludeScopes": false, "IncludeScopes": false,
"LogLevel": { "LogLevel": {


+ 1
- 1
src/Services/Marketing/Marketing.API/appsettings.json View File

@ -8,7 +8,7 @@
"ConnectionString": "Server=tcp:127.0.0.1,5433;Initial Catalog=Microsoft.eShopOnContainers.Services.MarketingDb;User Id=sa;Password=Pass@word", "ConnectionString": "Server=tcp:127.0.0.1,5433;Initial Catalog=Microsoft.eShopOnContainers.Services.MarketingDb;User Id=sa;Password=Pass@word",
"MongoConnectionString": "mongodb://nosql.data", "MongoConnectionString": "mongodb://nosql.data",
"MongoDatabase": "MarketingDb", "MongoDatabase": "MarketingDb",
"IdentityUrl": "http://localhost:5105",
"IdentityUrl": "https://localhost:4105",
"PicBaseUrl": "http://localhost:5110/api/v1/campaigns/[0]/pic/", "PicBaseUrl": "http://localhost:5110/api/v1/campaigns/[0]/pic/",
"AzureServiceBusEnabled": false, "AzureServiceBusEnabled": false,
"SubscriptionClientName": "Marketing", "SubscriptionClientName": "Marketing",


+ 1
- 1
src/Services/Ordering/Ordering.API/appsettings.json View File

@ -1,6 +1,6 @@
{ {
"ConnectionString": "Server=tcp:127.0.0.1,5433;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word;", "ConnectionString": "Server=tcp:127.0.0.1,5433;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word;",
"IdentityUrl": "http://localhost:5105",
"IdentityUrl": "https://localhost:4105",
"UseCustomizationData": false, "UseCustomizationData": false,
"Logging": { "Logging": {
"IncludeScopes": false, "IncludeScopes": false,


+ 1
- 1
src/Services/Ordering/Ordering.SignalrHub/appsettings.json View File

@ -1,5 +1,5 @@
{ {
"IdentityUrl": "http://localhost:5105",
"IdentityUrl": "https://localhost:4105",
"Logging": { "Logging": {
"IncludeScopes": false, "IncludeScopes": false,
"LogLevel": { "LogLevel": {


+ 2
- 2
src/Web/WebMVC/appsettings.json View File

@ -3,8 +3,8 @@
"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",
"CallBackUrl": "http://localhost:5100/",
"IdentityUrl": "https://localhost:4105",
"CallBackUrl": "https://localhost:4100/",
"LocationsUrl": "http://localhost:5109/", "LocationsUrl": "http://localhost:5109/",
"IsClusterEnv": "False", "IsClusterEnv": "False",
"UseResilientHttp": "True", "UseResilientHttp": "True",


+ 2
- 2
src/Web/WebSPA/appsettings.json 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",


+ 1
- 1
src/Web/WebStatus/appsettings.json View File

@ -11,7 +11,7 @@
"OrderingBackgroundTasksUrl": "http://localhost:5111/hc", "OrderingBackgroundTasksUrl": "http://localhost:5111/hc",
"BasketUrl": "http://localhost:5103/hc", "BasketUrl": "http://localhost:5103/hc",
"CatalogUrl": "http://localhost:5101/hc", "CatalogUrl": "http://localhost:5101/hc",
"IdentityUrl": "http://localhost:5105/hc",
"IdentityUrl": "https://localhost:4105/hc",
"MarketingUrl": "http://localhost:5110/hc", "MarketingUrl": "http://localhost:5110/hc",
"LocationsUrl": "http://localhost:5109/hc", "LocationsUrl": "http://localhost:5109/hc",
"PaymentUrl": "http://localhost:5108/hc", "PaymentUrl": "http://localhost:5108/hc",


Loading…
Cancel
Save