Skip to content

Commit 8691c55

Browse files
feat: option to disable https redirection (#23)
* fix: remove smalltalk * fix: smalltalk try 2 * Update .gitattributes * fix: removing smalltalk * fix: copy hook * feat: disable https redirection
1 parent 676fbd9 commit 8691c55

File tree

21 files changed

+15
-7
lines changed

21 files changed

+15
-7
lines changed
Binary file not shown.

src/api-gateways/DevStore.Bff.Checkout/appsettings.Development.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"Application": "BffCheckout"
2323
}
2424
},
25-
"AllowedHosts": "*",
2625
"ShoppingCartUrl": "https://localhost:5411",
2726
"CatalogUrl": "https://localhost:5431",
2827
"CustomerUrl": "https://localhost:5441",

src/api-gateways/DevStore.Bff.Checkout/appsettings.Docker.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"Application": "BffCheckout"
2323
}
2424
},
25-
"AllowedHosts": "*",
2625
"ShoppingCartUrl": "https://devstore-api-cart:5201",
2726
"CatalogUrl": "https://devstore-api-catalog:5301",
2827
"CustomerUrl": "https://devstore-api-customers:5401",

src/api-gateways/DevStore.Bff.Checkout/appsettings.Production.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"Application": "BffCheckout"
2323
}
2424
},
25-
"AllowedHosts": "*",
25+
2626
"ShoppingCartUrl": "https://devstore-api-cart:5201",
2727
"CatalogUrl": "https://devstore-api-catalog:5301",
2828
"CustomerUrl": "https://devstore-api-customers:5401",

src/api-gateways/DevStore.Bff.Checkout/appsettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"AllowedHosts": "*",
3+
"USE_HTTPS_REDIRECTION": "true",
34
"AppSettings": {
45
"Issuer": "https://devstore.academy",
56
"Audience": "DevStore"
Binary file not shown.

src/services/DevStore.Billing.API/appsettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"AllowedHosts": "*",
3+
"USE_HTTPS_REDIRECTION": "true",
34
"AppSettings": {
45
"Issuer": "https://devstore.academy",
56
"Audience": "DevStore",
Binary file not shown.

src/services/DevStore.Catalog.API/appsettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"AllowedHosts": "*",
3+
"USE_HTTPS_REDIRECTION": "true",
34
"AppSettings": {
45
"Issuer": "https://devstore.academy",
56
"Audience": "DevStore",
Binary file not shown.

0 commit comments

Comments
 (0)