From 4ec00f2c3a831905381a8dcaace88cd033125767 Mon Sep 17 00:00:00 2001 From: Piotr Biernat Date: Sun, 25 Jun 2023 00:55:25 +0200 Subject: [PATCH] Update testign env --- deploy/.env.local | 8 ++++---- deploy/egommerce-stack.dev.local.yml | 6 +++--- deploy/nginx-vhost.local.conf | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/deploy/.env.local b/deploy/.env.local index 563d63f..a06b911 100644 --- a/deploy/.env.local +++ b/deploy/.env.local @@ -1,4 +1,4 @@ -API_GATEWAY_PORT=48443 -API_GATEWAY_UI_PORT=48444 -API_REGISTRY_UI_PORT=48445 -API_EVENTBUS_UI_PORT=48446 +API_GATEWAY_PORT=40056 +API_GATEWAY_UI_PORT=40057 +API_REGISTRY_UI_PORT=40058 +API_EVENTBUS_UI_PORT=40059 diff --git a/deploy/egommerce-stack.dev.local.yml b/deploy/egommerce-stack.dev.local.yml index bc848c0..95f7e86 100644 --- a/deploy/egommerce-stack.dev.local.yml +++ b/deploy/egommerce-stack.dev.local.yml @@ -5,7 +5,7 @@ services: env_file: .env.local environment: - APP_DOMAIN=egommerce.local - # - APP_PORT=48443 + # - APP_PORT=40056 ports: - '40056:443' - '40057:8080' @@ -15,7 +15,7 @@ services: command: ["-bootstrap-expect=1", "-ui-content-path=/registry", -log-level=DEBUG] environment: - APP_DOMAIN=registry.egommerce.local - # - APP_PORT=48445 + # - APP_PORT=40058 ports: # - '8300:8300' - '40058:8500' @@ -26,7 +26,7 @@ services: env_file: .env.local environment: - APP_DOMAIN=eventbus.egommerce.local - # - APP_PORT=48446 + # - APP_PORT=40059 labels: - traefik.enable=true - traefik.tcp.routers.eventbus.rule=HostSNI(`*`) diff --git a/deploy/nginx-vhost.local.conf b/deploy/nginx-vhost.local.conf index cd4ea5e..9166b91 100644 --- a/deploy/nginx-vhost.local.conf +++ b/deploy/nginx-vhost.local.conf @@ -1,17 +1,17 @@ upstream egommerce-api-gw { - server 127.0.0.1:48443; + server 127.0.0.1:40056; } upstream egommerce-api-gw-dashboard { - server 127.0.0.1:48444; + server 127.0.0.1:40057; } upstream egommerce-api-registry-ui { - server 127.0.0.1:48445; + server 127.0.0.1:40058; } upstream egommerce-api-eventbus-mngmt { - server 127.0.0.1:48446; + server 127.0.0.1:40059; } server {