Update testign env

This commit is contained in:
Piotr Biernat 2023-06-25 00:55:25 +02:00
parent d018ce7f0a
commit 4ec00f2c3a
3 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
API_GATEWAY_PORT=48443 API_GATEWAY_PORT=40056
API_GATEWAY_UI_PORT=48444 API_GATEWAY_UI_PORT=40057
API_REGISTRY_UI_PORT=48445 API_REGISTRY_UI_PORT=40058
API_EVENTBUS_UI_PORT=48446 API_EVENTBUS_UI_PORT=40059

View File

@ -5,7 +5,7 @@ services:
env_file: .env.local env_file: .env.local
environment: environment:
- APP_DOMAIN=egommerce.local - APP_DOMAIN=egommerce.local
# - APP_PORT=48443 # - APP_PORT=40056
ports: ports:
- '40056:443' - '40056:443'
- '40057:8080' - '40057:8080'
@ -15,7 +15,7 @@ services:
command: ["-bootstrap-expect=1", "-ui-content-path=/registry", -log-level=DEBUG] command: ["-bootstrap-expect=1", "-ui-content-path=/registry", -log-level=DEBUG]
environment: environment:
- APP_DOMAIN=registry.egommerce.local - APP_DOMAIN=registry.egommerce.local
# - APP_PORT=48445 # - APP_PORT=40058
ports: ports:
# - '8300:8300' # - '8300:8300'
- '40058:8500' - '40058:8500'
@ -26,7 +26,7 @@ services:
env_file: .env.local env_file: .env.local
environment: environment:
- APP_DOMAIN=eventbus.egommerce.local - APP_DOMAIN=eventbus.egommerce.local
# - APP_PORT=48446 # - APP_PORT=40059
labels: labels:
- traefik.enable=true - traefik.enable=true
- traefik.tcp.routers.eventbus.rule=HostSNI(`*`) - traefik.tcp.routers.eventbus.rule=HostSNI(`*`)

View File

@ -1,17 +1,17 @@
upstream egommerce-api-gw { upstream egommerce-api-gw {
server 127.0.0.1:48443; server 127.0.0.1:40056;
} }
upstream egommerce-api-gw-dashboard { upstream egommerce-api-gw-dashboard {
server 127.0.0.1:48444; server 127.0.0.1:40057;
} }
upstream egommerce-api-registry-ui { upstream egommerce-api-registry-ui {
server 127.0.0.1:48445; server 127.0.0.1:40058;
} }
upstream egommerce-api-eventbus-mngmt { upstream egommerce-api-eventbus-mngmt {
server 127.0.0.1:48446; server 127.0.0.1:40059;
} }
server { server {