use separate host port for chat ui and for app_server

We were using same port for both chatui and app_server which was causing conflict. This code change updates host port for app_server to 18083 and updates arch_config
This commit is contained in:
Adil Hafeez 2025-04-23 11:13:35 -07:00
parent 9c803f4d69
commit 609479fc93
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ endpoints:
# value could be ip address or a hostname with port # value could be ip address or a hostname with port
# this could also be a list of endpoints for load balancing # this could also be a list of endpoints for load balancing
# for example endpoint: [ ip1:port, ip2:port ] # for example endpoint: [ ip1:port, ip2:port ]
endpoint: host.docker.internal:18080 endpoint: host.docker.internal:18083
# max time to wait for a connection to be established # max time to wait for a connection to be established
connect_timeout: 0.005s connect_timeout: 0.005s

View file

@ -9,7 +9,7 @@ services:
volumes: volumes:
- ./arch_config.yaml:/app/arch_config.yaml - ./arch_config.yaml:/app/arch_config.yaml
ports: ports:
- "18080:80" - "18083:80"
healthcheck: healthcheck:
test: ["CMD", "curl" ,"http://localhost:80/healthz"] test: ["CMD", "curl" ,"http://localhost:80/healthz"]
interval: 5s interval: 5s