Skip to content

Commit cfe3f0f

Browse files
authored
Merge pull request #161 from opencloud-eu/fix-external-proxy
fix: bind ports on localhost for external proxy
2 parents 5873484 + 6a5950d commit cfe3f0f

3 files changed

Lines changed: 9 additions & 8 deletions

File tree

external-proxy/collabora.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
services:
33
collaboration:
44
ports:
5-
# expose the wopi server
6-
- "9300:9300"
5+
# expose the wopi server on localhost
6+
- "127.0.0.1:9300:9300"
77
collabora:
88
ports:
9-
# expose the collabora server
10-
- "9980:9980"
9+
# expose the collabora server on localhost
10+
- "127.0.0.1:9980:9980"

external-proxy/keycloak.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
services:
33
keycloak:
44
ports:
5-
- "9000:9000"
6-
- "8080:8080"
5+
# expose the keycloak server on localhost
6+
- "127.0.0.1:9000:9000"
7+
- "127.0.0.1:8080:8080"

external-proxy/opencloud.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ services:
55
# bind to all interfaces
66
PROXY_HTTP_ADDR: "0.0.0.0:9200"
77
ports:
8-
# expose the opencloud server
9-
- "9200:9200"
8+
# expose the opencloud server on localhost
9+
- "127.0.0.1:9200:9200"

0 commit comments

Comments
 (0)