Skip to content

Commit

Permalink
Change envoy port
Browse files Browse the repository at this point in the history
  • Loading branch information
david1542 committed Sep 24, 2024
1 parent d6916f3 commit ef94256
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ LITELLM_PORT=4000
LITELLM_URL=http://litellm:${LITELLM_PORT}

# Envoy
ENVOY_PORT=8080
ENVOY_PORT=9090
ENVOY_URL=http://envoy:${ENVOY_PORT}

################
Expand Down
2 changes: 1 addition & 1 deletion config/envoy/envoy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ static_resources:
listeners:
- name: listener_0
address:
socket_address: { address: 0.0.0.0, port_value: 8080 }
socket_address: { address: 0.0.0.0, port_value: 7513 }
filter_chains:
- filters:
- name: envoy.filters.network.http_connection_manager
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
container_name: envoy
profiles: ["app", "infra"]
ports:
- "8080:8080"
- "${ENVOY_PORT}:${ENVOY_PORT}"
volumes:
- ./config/envoy/envoy.yaml:/etc/envoy/envoy.yaml
postgres-common:
Expand Down
4 changes: 2 additions & 2 deletions services/api/.env.dev
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ KRATOS_ADMIN_URL="http://localhost:4434"
ORY_WEBHOOK_SECRET="super-secret-ory-webhook-key"
CHROMA_HOST="http://localhost:8000"
CHROMA_API_KEY="secret-token"
DATA_PROCESSOR_URL=http://localhost:8080/data-processor
DATA_PROCESSOR_URL=http://localhost:7513/data-processor
LITELLM_URL=http://localhost:4000
LOG_PARSER_URL=http://localhost:8080/log-parser
LOG_PARSER_URL=http://localhost:7513/log-parser
TELEMETRY_ENABLED=true
2 changes: 1 addition & 1 deletion services/slackbot/.env.dev
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
PORT=3003
NODE_ENV=development
API_URL=http://localhost:8080/api
API_URL=http://localhost:7513/api

0 comments on commit ef94256

Please sign in to comment.