https://github.com/guillotinaweb/guillotina_ldap
https://github.com/guillotinaweb/guillotina_ldap
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/guillotinaweb/guillotina_ldap
- Owner: guillotinaweb
- Created: 2020-11-08T19:20:22.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-04T14:51:50.000Z (over 1 year ago)
- Last Synced: 2025-02-16T03:26:14.352Z (8 months ago)
- Language: Python
- Size: 57.6 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
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