From 684216c42e6adf76262849b382c59e9d161b9a87 Mon Sep 17 00:00:00 2001 From: Simone Gotti Date: Wed, 13 Jan 2021 16:13:04 +0100 Subject: [PATCH] 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. --- examples/agolademo/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/agolademo/config.yml b/examples/agolademo/config.yml index 766399f..8d66653 100644 --- a/examples/agolademo/config.yml +++ b/examples/agolademo/config.yml @@ -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" \ No newline at end of file + listenAddress: ":4003"