Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c82a4acadc | ||
|
|
090dbb0244 | ||
|
|
4f78f5c92f |
@@ -3,4 +3,5 @@
|
|||||||
.dockerignore
|
.dockerignore
|
||||||
node_modules
|
node_modules
|
||||||
screenshots/*
|
screenshots/*
|
||||||
|
test/*
|
||||||
|
|
||||||
|
|||||||
@@ -104,3 +104,6 @@
|
|||||||
[0.6.0]
|
[0.6.0]
|
||||||
* Fix title
|
* Fix title
|
||||||
|
|
||||||
|
[0.7.0]
|
||||||
|
* Set turn_uris to an array and not a string
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG",
|
"changelog": "file://CHANGELOG",
|
||||||
"tagline": "Secure & decentralized communication",
|
"tagline": "Secure & decentralized communication",
|
||||||
"version": "0.6.0-2",
|
"version": "0.7.0",
|
||||||
"healthCheckPath": "/",
|
"healthCheckPath": "/",
|
||||||
"httpPort": 8008,
|
"httpPort": 8008,
|
||||||
"memoryLimit": 536870912,
|
"memoryLimit": 536870912,
|
||||||
|
|||||||
4
start.sh
4
start.sh
@@ -55,7 +55,9 @@ yq w -i /app/data/configs/homeserver.yaml 'password_providers[0].config.bind_pas
|
|||||||
yq w -i /app/data/configs/homeserver.yaml 'password_providers[0].config.filter' "(objectClass=user)"
|
yq w -i /app/data/configs/homeserver.yaml 'password_providers[0].config.filter' "(objectClass=user)"
|
||||||
|
|
||||||
# turn (https://github.com/matrix-org/synapse/blob/master/docs/turn-howto.md#synapse-setup)
|
# turn (https://github.com/matrix-org/synapse/blob/master/docs/turn-howto.md#synapse-setup)
|
||||||
yq w -i /app/data/configs/homeserver.yaml turn_uris "[\"turn:${CLOUDRON_TURN_SERVER}:${CLOUDRON_TURN_TLS_PORT}?transport=udp\", \"turn:${CLOUDRON_TURN_SERVER}:${CLOUDRON_TURN_TLS_PORT}?transport=tcp\"]"
|
yq w -i /app/data/configs/homeserver.yaml turn_uris "[]"
|
||||||
|
yq w -i /app/data/configs/homeserver.yaml turn_uris\[0\] "turn:${CLOUDRON_TURN_SERVER}:${CLOUDRON_TURN_TLS_PORT}?transport=udp"
|
||||||
|
yq w -i /app/data/configs/homeserver.yaml turn_uris\[1\] "turn:${CLOUDRON_TURN_SERVER}:${CLOUDRON_TURN_TLS_PORT}?transport=tcp"
|
||||||
yq w -i /app/data/configs/homeserver.yaml turn_shared_secret "${CLOUDRON_TURN_SECRET}"
|
yq w -i /app/data/configs/homeserver.yaml turn_shared_secret "${CLOUDRON_TURN_SECRET}"
|
||||||
|
|
||||||
# fix permissions
|
# fix permissions
|
||||||
|
|||||||
Reference in New Issue
Block a user