This website works better with JavaScript.
Home
Explore
Help
Sign In
ayan.poddar
/
eShopOnContainers
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
19
Wiki
Activity
Browse Source
Add Marketing endpoint
pull/223/head
Christian Arenas
7 years ago
parent
6168b52db8
commit
870ac403af
3 changed files
with
3 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
docker-compose.override.yml
+1
-0
src/Web/WebMVC/AppSettings.cs
+1
-0
src/Web/WebMVC/appsettings.json
+ 1
- 0
docker-compose.override.yml
View File
@ -73,6 +73,7 @@ services:
-
OrderingUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5102
-
IdentityUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
-
BasketUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5103
-
MarketingUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5110
-
CatalogUrlHC=http://catalog.api/hc
-
OrderingUrlHC=http://ordering.api/hc
-
IdentityUrlHC=http://identity.api/hc #Local
:
Use ${ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP}, if using external IP or DNS name from browser.
+ 1
- 0
src/Web/WebMVC/AppSettings.cs
View File
@ -11,6 +11,7 @@ namespace Microsoft.eShopOnContainers.WebMVC
public
string
CatalogUrl
{
get
;
set
;
}
public
string
OrderingUrl
{
get
;
set
;
}
public
string
BasketUrl
{
get
;
set
;
}
public
string
MarketingUrl
{
get
;
set
;
}
public
Logging
Logging
{
get
;
set
;
}
}
+ 1
- 0
src/Web/WebMVC/appsettings.json
View File
@ -2,6 +2,7 @@
"CatalogUrl"
:
"http://localhost:5101"
,
"OrderingUrl"
:
"http://localhost:5102"
,
"BasketUrl"
:
"http://localhost:5103"
,
"MarketingUrl"
:
"http://localhost:5110"
,
"IdentityUrl"
:
"http://localhost:5105"
,
"CallBackUrl"
:
"http://localhost:5100/"
,
"IsClusterEnv"
:
"False"
,
Write
Preview
Loading…
Cancel
Save