2025-02-04 22:37:07 +01:00
# @See https://hub.docker.com/r/bitnami/openldap
# GENERAL
## Database
LDAP_ADMIN_USERNAME= {{applications.ldap.administrator_username}} # LDAP database admin user.
LDAP_ADMIN_PASSWORD= {{applications.ldap.administrator_database_password}} # LDAP database admin password.
## Users
LDAP_USERS= ' ' # Comma separated list of LDAP users to create in the default LDAP tree. Default: user01,user02
LDAP_PASSWORDS= ' ' # Comma separated list of passwords to use for LDAP users. Default: bitnami1,bitnami2
2025-02-12 12:41:13 +01:00
LDAP_ROOT= {{ldap.dn.root}} # LDAP baseDN (or suffix) of the LDAP tree. Default: dc=example,dc=org
2025-02-04 22:37:07 +01:00
## Admin
2025-02-18 14:46:09 +01:00
LDAP_ADMIN_DN= {{ldap.dn.bind}}
2025-02-04 22:37:07 +01:00
LDAP_CONFIG_ADMIN_ENABLED= yes
LDAP_CONFIG_ADMIN_USERNAME= {{applications.ldap.administrator_username}}
LDAP_CONFIG_ADMIN_PASSWORD= {{applications.ldap.administrator_password}}
# Network
2025-02-12 12:41:13 +01:00
LDAP_PORT_NUMBER= {{ldap_docker_port}} # Route to default port
2025-02-04 22:37:07 +01:00
LDAP_ENABLE_TLS= no # Using nginx proxy for tls
2025-02-12 12:41:13 +01:00
LDAP_LDAPS_PORT_NUMBER= {{ldaps_docker_port}} # Port used for TLS secure traffic. Priviledged port is supported (e.g. 636). Default: 1636 (non privileged port).
2025-02-04 22:37:07 +01:00
# Security
LDAP_ALLOW_ANON_BINDING= no # Allow anonymous bindings to the LDAP server. Default: yes.