Skip to content

Commit f70e428

Browse files
authored
update gatewayd.yaml configuration addresses to use 0.0.0.0 instead of localhost (#552)
* Fix IP binding issue to make application accessible outside the container
1 parent f032849 commit f70e428

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gatewayd.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ loggers:
2323
metrics:
2424
default:
2525
enabled: True
26-
address: localhost:9090
26+
address: 0.0.0.0:9090
2727
path: /metrics
2828
readHeaderTimeout: 10s # duration, prevents Slowloris attacks
2929
timeout: 10s # duration
@@ -68,6 +68,6 @@ servers:
6868

6969
api:
7070
enabled: True
71-
httpAddress: localhost:18080
71+
httpAddress: 0.0.0.0:18080
7272
grpcNetwork: tcp
73-
grpcAddress: localhost:19090
73+
grpcAddress: 0.0.0.0:19090

0 commit comments

Comments
 (0)