Compare commits

...

2 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
5 changed files with 6 additions and 2 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
+1
View File
@@ -8,6 +8,7 @@ services:
- DOMAIN
- HOMESERVER
- SERVER_NAME
- USE_SSO=${USE_SSO:-false}
networks:
- proxy
configs:
+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!