Compare commits

..

1 Commits

Author SHA1 Message Date
b9c7d54db8 only use sso redirection if sso is enabled
Some checks reported errors
continuous-integration/drone/pr Build encountered an error
2026-03-19 18:44:15 -07:00
5 changed files with 5 additions and 8 deletions

View File

@ -7,3 +7,5 @@ LETS_ENCRYPT_ENV=production
HOMESERVER=matrix-synapse.example.com
SERVER_NAME=mymatrix
BRAND=mymatrix
USE_SSO=false

View File

@ -1 +1 @@
export CONFIG_JSON_VERSION=v3
export CONFIG_JSON_VERSION=v4

View File

@ -8,6 +8,7 @@ services:
- DOMAIN
- HOMESERVER
- SERVER_NAME
- USE_SSO=${USE_SSO:-true}
networks:
- proxy
configs:

View File

@ -6,7 +6,7 @@
}
},
"sso_redirect_options": {
"immediate": true
"immediate": {{ env "USE_SSO" }}
},
"disable_custom_urls": false,
"disable_guests": true,

View File

@ -1,6 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}