Added condition for OIDC bbb

This commit is contained in:
Kevin Veen-Birkenbach 2025-01-27 10:57:59 +01:00
parent 2d38f97b17
commit c896057400
2 changed files with 4 additions and 1 deletions

View File

@ -243,7 +243,8 @@ joomla_version: "latest"
#### Keycloak
keycloak_version: "latest"
keycloak_administrator_username: "{{administrator_username}}"
keycloak_administrator_username: "{{administrator_username}}" # Administrator Username for Keycloak
keycloak_oidc_active: true # Implement OpenID Connect https://en.wikipedia.org/wiki/OpenID_Connect
#### LDAP
ldap_lam_version: "latest"

View File

@ -281,6 +281,7 @@ HELP_URL=https://docs.bigbluebutton.org/greenlight/gl-overview.html
# approval - For approve/decline registration
DEFAULT_REGISTRATION=invite
{% if keycloak_oidc_active | bool %}
### EXTERNAL AUTHENTICATION METHODS
# @See https://docs.bigbluebutton.org/greenlight/v3/external-authentication/
#
@ -288,3 +289,4 @@ OPENID_CONNECT_CLIENT_ID={{oauth2_proxy_client_id}}
OPENID_CONNECT_CLIENT_SECRET={{oauth2_proxy_client_secret}}
OPENID_CONNECT_ISSUER={{oauth2_proxy_oidc_issuer_url}}
OPENID_CONNECT_REDIRECT=https://{{domain}}
{% endif %}