An open API service indexing awesome lists of open source software.

https://github.com/guillotinaweb/guillotina_ldap


https://github.com/guillotinaweb/guillotina_ldap

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

GUILLOTINA_LDAP
===============

LDAP Auth backend for guillotina.

Example config.json entry:

.. code-block:: json

...
"applications": ["guillotina_ldap"],
"ldap": {
"host": "ldap://myldap.example.com",
"tls": true,
"attribute_users": "uid",
"objecttype": "inetOrgPerson",
"managerdn": "CM=MANAGER,DC=DOMAIN,DC=ORG",
"managerpwd": "secret",
"usersdn": "OU=USERS,DC=DOMAIN,DC=ORG",
"managers": ["bob"]
}

Getting started with development
--------------------------------

Using pip (requires Python > 3.7):

.. code-block:: shell

python3.7 -m venv .
./bin/pip install -e .[test]
pre-commit install