Merge pull request #161 from opencloud-eu/fix-external-proxy

fix: bind ports on localhost for external proxy
This commit is contained in:
Michael Barz
2025-11-20 11:05:45 +01:00
committed by GitHub
3 changed files with 9 additions and 8 deletions

View File

@@ -2,9 +2,9 @@
services:
collaboration:
ports:
# expose the wopi server
- "9300:9300"
# expose the wopi server on localhost
- "127.0.0.1:9300:9300"
collabora:
ports:
# expose the collabora server
- "9980:9980"
# expose the collabora server on localhost
- "127.0.0.1:9980:9980"

View File

@@ -2,5 +2,6 @@
services:
keycloak:
ports:
- "9000:9000"
- "8080:8080"
# expose the keycloak server on localhost
- "127.0.0.1:9000:9000"
- "127.0.0.1:8080:8080"

View File

@@ -5,5 +5,5 @@ services:
# bind to all interfaces
PROXY_HTTP_ADDR: "0.0.0.0:9200"
ports:
# expose the opencloud server
- "9200:9200"
# expose the opencloud server on localhost
- "127.0.0.1:9200:9200"