Compare commits

..

5 Commits

5 changed files with 8 additions and 4 deletions
+2
View File
@@ -7,3 +7,5 @@ LETS_ENCRYPT_ENV=production
HOMESERVER=matrix-synapse.example.com
SERVER_NAME=mymatrix
BRAND=mymatrix
USE_SSO=false
+1 -1
View File
@@ -1 +1 @@
export CONFIG_JSON_VERSION=v3
export CONFIG_JSON_VERSION=v4
+3 -2
View File
@@ -3,11 +3,12 @@ version: "3.8"
services:
app:
image: "vectorim/element-web:v1.11.105"
image: "vectorim/element-web:v1.12.18"
environment:
- DOMAIN
- HOMESERVER
- SERVER_NAME
- USE_SSO=${USE_SSO:-false}
networks:
- proxy
configs:
@@ -22,7 +23,7 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=0.11.0+v1.11.105"
- "coop-cloud.${STACK_NAME}.version=0.13.0+v1.12.18"
networks:
proxy:
+1 -1
View File
@@ -6,7 +6,7 @@
}
},
"sso_redirect_options": {
"immediate": true
"immediate": {{ env "USE_SSO" }}
},
"disable_custom_urls": false,
"disable_guests": true,
+1
View File
@@ -0,0 +1 @@
Recipe now _disables_ SSO by default. Set USE_SSO=true in your app config to override this behaviour if you have SSO!