From c3e5db7f2ea263b01d0c86e98fcc57c8fc1676fe Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Sat, 27 Sep 2025 11:30:39 +0200 Subject: [PATCH] Cleaned up LDAP entries to keep it more clean --- roles/web-app-bigbluebutton/templates/env.j2 | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/roles/web-app-bigbluebutton/templates/env.j2 b/roles/web-app-bigbluebutton/templates/env.j2 index 0dc84dd3..3212f9c3 100644 --- a/roles/web-app-bigbluebutton/templates/env.j2 +++ b/roles/web-app-bigbluebutton/templates/env.j2 @@ -169,27 +169,17 @@ OAUTH2_REDIRECT= # For information about setting up LDAP, see: # # https://docs.bigbluebutton.org/greenlight/gl-config.html#ldap-auth -# -# LDAP_SERVER=ldap.example.com -# LDAP_PORT=389 -# LDAP_METHOD=plain -# LDAP_UID={{ LDAP.USER.ATTRIBUTES.ID }} -# LDAP_BASE=dc=example,dc=com -# LDAP_AUTH=simple -# LDAP_BIND_DN=cn=admin,dc=example,dc=com -# LDAP_PASSWORD=password -# LDAP_ROLE_FIELD=ou -# LDAP_FILTER=(&(attr1=value1)(attr2=value2)) + LDAP_SERVER="{{ LDAP.SERVER.DOMAIN }}" LDAP_PORT="{{ LDAP.SERVER.PORT }}" -LDAP_METHOD= +# LDAP_METHOD=plain LDAP_UID={{ LDAP.USER.ATTRIBUTES.ID }} LDAP_BASE="{{ LDAP.DN.ROOT }}" LDAP_BIND_DN="{{ LDAP.DN.ADMINISTRATOR.DATA }}" LDAP_AUTH=password LDAP_PASSWORD="{{ LDAP.BIND_CREDENTIAL }}" -LDAP_ROLE_FIELD= -LDAP_FILTER= +# LDAP_ROLE_FIELD=ou +# LDAP_FILTER=(&(attr1=value1)(attr2=value2)) {% endif %} # ====================================