From 3760d961384d716155c84b0ea71800ff1a4ba51c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dipl=20Ing=2E=20P=C3=A9ter=20Varkoly?= Date: Fri, 20 Sep 2024 11:15:07 +0200 Subject: [PATCH] Updated LDAP authentication (markdown) --- LDAP-authentication.md | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/LDAP-authentication.md b/LDAP-authentication.md index cde44e2..3b67f9d 100644 --- a/LDAP-authentication.md +++ b/LDAP-authentication.md @@ -6,14 +6,9 @@ After installing the python ldap module you have to enable and confiugre it in t Following parameter are available. No default values are provided that means you have to set all parameters: -`type = ldap` - -`ldap_uri` The URI to the LDAP-server. [ldap|ldaps]://[:port] - -`ldap_base` The base DN from where the users must be searched for. - -`ldap_reader_dn` The DN of the LDAP account with read rights to the subtree from ldap_base - -`ldap_secret` The password of the ldap_reader_dn - -`ldap_filter` The ldap filter to find the DN of the login user. This filter must contain a python format string with placeholder(s) for the login: (&(objectClass=person)(cn={0})) \ No newline at end of file +* `type = ldap` +* `ldap_uri` The URI to the LDAP-server. [ldap|ldaps]://[:port] +* `ldap_base` The base DN from where the users must be searched for. +* `ldap_reader_dn` The DN of the LDAP account with read rights to the subtree from ldap_base +* `ldap_secret` The password of the ldap_reader_dn +* `ldap_filter` The ldap filter to find the DN of the login user. This filter must contain a python format string with placeholder(s) for the login: (&(objectClass=person)(cn={0})) \ No newline at end of file