Compare commits

..
Author SHA1 Message Date
moosemower 0cf7191b71 chore: publish 1.0.0+v1.12.18 release
continuous-integration/drone/pr Build encountered an error
2026-06-07 10:59:49 -07:00
moosemower 6b4822a04e only use sso redirection if sso is enabled 2026-06-07 10:59:27 -07:00
moritz b42d80bcc5 chore: publish 0.13.0+v1.12.18 release
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/tag Build encountered an error
2026-05-18 18:08:49 +02:00
moritz aa8793a1df chore: update image tags 2026-05-18 18:06:59 +02:00
carla b8a1ae648a chore: publish 0.12.0+v1.12.13 release
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/tag Build encountered an error
2026-03-24 16:53:53 +01:00
6 changed files with 8 additions and 10 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!
-6
View File
@@ -1,6 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}