AUTH_LDAP_SERVER_URI: "ldap://ldap.example.com:389"
AUTH_LDAP_BIND_DN: "cn=admin,dc=example,dc=org"
AUTH_LDAP_BIND_PASSWORD: "password"
AUTH_LDAP_START_TLS: false
AUTH_LDAP_USER_SEARCH: [
"ou=users,dc=example,dc=org",
"SCOPE_SUBTREE", "(cn=%(user)s)"
]
AUTH_LDAP_USER_ATTR_MAP: {
"first_name": "givenName",
"last_name": "sn",
"email": "mail"
}
AUTH_LDAP_SERVER_URI: "ldap://ldap.example.com:389"
AUTH_LDAP_BIND_DN: "cn=admin,dc=example,dc=org"
AUTH_LDAP_BIND_PASSWORD: "password"
AUTH_LDAP_START_TLS: false
AUTH_LDAP_USER_SEARCH: [
"ou=users,dc=example,dc=org",
"SCOPE_SUBTREE", "(cn=%(user)s)"
]
AUTH_LDAP_USER_ATTR_MAP: {
"first_name": "givenName",
"last_name": "sn",
"email": "mail"
}
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow
|
"configuration": {
"SERVER_URI": "ldap://ldap.example.com:389",
"BIND_DN": "cn=admin,dc=example,dc=org",
"BIND_PASSWORD": "password",
"START_TLS": false,
"USER_SEARCH": [
"ou=users,dc=example,dc=org",
"SCOPE_SUBTREE",
"(cn=%(user)s)"
],
"USER_ATTR_MAP": {
"first_name": "givenName",
"last_name": "sn",
"email": "mail"
}
}
"configuration": {
"SERVER_URI": "ldap://ldap.example.com:389",
"BIND_DN": "cn=admin,dc=example,dc=org",
"BIND_PASSWORD": "password",
"START_TLS": false,
"USER_SEARCH": [
"ou=users,dc=example,dc=org",
"SCOPE_SUBTREE",
"(cn=%(user)s)"
],
"USER_ATTR_MAP": {
"first_name": "givenName",
"last_name": "sn",
"email": "mail"
}
}
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow
|