example: fix gitserverURL in example config
The git server needs to be accessed on localhost from the gateway and not from the host's docker bridge address.
This commit is contained in:
parent
e0756d6e61
commit
684216c42e
|
@ -3,7 +3,7 @@ gateway:
|
|||
webExposedURL: "http://172.17.0.1:8000"
|
||||
runserviceURL: "http://localhost:4000"
|
||||
configstoreURL: "http://localhost:4002"
|
||||
gitserverURL: "http://172.17.0.1:4003"
|
||||
gitserverURL: "http://localhost:4003"
|
||||
|
||||
web:
|
||||
listenAddress: ":8000"
|
||||
|
@ -63,4 +63,4 @@ gitserver:
|
|||
dataDir: /data/agola/gitserver
|
||||
gatewayURL: "http://localhost:8000"
|
||||
web:
|
||||
listenAddress: ":4003"
|
||||
listenAddress: ":4003"
|
||||
|
|
Loading…
Reference in New Issue