__init__.py 495 B

1234567891011121314151617
  1. """
  2. LDAP authentication module for ArchiveBox.
  3. This module provides native LDAP authentication support using django-auth-ldap.
  4. It only activates if:
  5. 1. LDAP_ENABLED=True in config
  6. 2. Required LDAP libraries (python-ldap, django-auth-ldap) are installed
  7. To install LDAP dependencies:
  8. pip install archivebox[ldap]
  9. Or manually:
  10. apt install build-essential python3-dev libsasl2-dev libldap2-dev libssl-dev
  11. pip install python-ldap django-auth-ldap
  12. """
  13. __package__ = "archivebox.ldap"