Skip to content

Commit

Permalink
update gatewayd.yaml configuration addresses to use 0.0.0.0 instead o…
Browse files Browse the repository at this point in the history
…f localhost (#552)

* Fix IP binding issue to make application accessible outside the container
  • Loading branch information
sinadarbouy authored May 31, 2024
1 parent f032849 commit f70e428
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gatewayd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ loggers:
metrics:
default:
enabled: True
address: localhost:9090
address: 0.0.0.0:9090
path: /metrics
readHeaderTimeout: 10s # duration, prevents Slowloris attacks
timeout: 10s # duration
Expand Down Expand Up @@ -68,6 +68,6 @@ servers:

api:
enabled: True
httpAddress: localhost:18080
httpAddress: 0.0.0.0:18080
grpcNetwork: tcp
grpcAddress: localhost:19090
grpcAddress: 0.0.0.0:19090

0 comments on commit f70e428

Please sign in to comment.