mirror of
https://github.com/opencloud-eu/opencloud-compose.git
synced 2026-06-08 12:10:05 +08:00
Merge pull request #161 from opencloud-eu/fix-external-proxy
fix: bind ports on localhost for external proxy
This commit is contained in:
@@ -2,9 +2,9 @@
|
|||||||
services:
|
services:
|
||||||
collaboration:
|
collaboration:
|
||||||
ports:
|
ports:
|
||||||
# expose the wopi server
|
# expose the wopi server on localhost
|
||||||
- "9300:9300"
|
- "127.0.0.1:9300:9300"
|
||||||
collabora:
|
collabora:
|
||||||
ports:
|
ports:
|
||||||
# expose the collabora server
|
# expose the collabora server on localhost
|
||||||
- "9980:9980"
|
- "127.0.0.1:9980:9980"
|
||||||
|
|||||||
@@ -2,5 +2,6 @@
|
|||||||
services:
|
services:
|
||||||
keycloak:
|
keycloak:
|
||||||
ports:
|
ports:
|
||||||
- "9000:9000"
|
# expose the keycloak server on localhost
|
||||||
- "8080:8080"
|
- "127.0.0.1:9000:9000"
|
||||||
|
- "127.0.0.1:8080:8080"
|
||||||
|
|||||||
@@ -5,5 +5,5 @@ services:
|
|||||||
# bind to all interfaces
|
# bind to all interfaces
|
||||||
PROXY_HTTP_ADDR: "0.0.0.0:9200"
|
PROXY_HTTP_ADDR: "0.0.0.0:9200"
|
||||||
ports:
|
ports:
|
||||||
# expose the opencloud server
|
# expose the opencloud server on localhost
|
||||||
- "9200:9200"
|
- "127.0.0.1:9200:9200"
|
||||||
|
|||||||
Reference in New Issue
Block a user