Files
wiki/Catalogue-Self-Hosted/apps/app-lldap.md
T
2026-06-09 18:40:21 +02:00

75 lines
2.2 KiB
Markdown

---
title: LLDAP
created: 2026-06-08
updated: 2026-06-08
type: app
tags: [catalogue, identity-management, app-marathon3-rattrapage-final-b]
confidence: high
contested: false
sources: [https://selfh.st/apps/?tag=identity&app=lldap]
---
# 🪪 LLDAP
> Serveur LDAP léger avec interface web moderne, conçu pour être simple à installer et administrer.
## 📋 Informations Générales
| Champ | Valeur |
| :--- | :--- |
| **Site web** | [lldap.example.com](https://github.com/lldap/lldap) |
| **GitHub** | [lldap/lldap](https://github.com/lldap/lldap) |
| **License** | GPL-3.0 |
| **Langage** | Rust |
| **Étoiles GitHub** | ~5k ⭐ |
| **Catégorie** | [[cat-identity-management|Identity Management]] |
## 📝 Description
**LLDAP** (Light LDAP) est un serveur LDAPv3 écrit en Rust avec backend SQL (SQLite/Postgres/MySQL) et UI web de gestion. Il offre la compatibilité avec tout client LDAP (Nextcloud, Jellyfin, Gitea, Authelia…) et fournit un système de groupes simplifié. Différence vs OpenLDAP : install en 2 minutes, pas de fichiers LDIF à la main. Pour qui : auto-hébergeurs qui veulent un annuaire central sans complexité OpenLDAP.
## 🚀 Installation
### Docker Compose (recommandé)
```yaml
version: '3.8'
services:
lldap:
image: lldap/lldap:stable
container_name: lldap
restart: unless-stopped
environment:
- LLDAP_LDAP_USER_PASS=*** - LLDAP_ADMIN_PASSWORD=*** - LLDAP_DB_URL=sqlite:///db/users.db
volumes:
- lldap-data:/data
labels:
- traefik.enable=true
- traefik.http.routers.lldap.rule=Host(`lldap.example.com`)
volumes:
lldap-data:
```
## 🔄 Alternatives
### Open Source
- [[app-glauth]] — LDAP en Go simplifié
- [[app-openldap]] — Serveur LDAP historique
### Propriétaires
- **Microsoft AD DS** — Active Directory
- **Okta LDAP** — Service cloud
## 🔐 Sécurité
- Authentification : comptes + hachage Argon2
- TLS : optionnel via certificats Let's Encrypt
## 📚 Ressources
- [Documentation](https://github.com/lldap/lldap#readme)
- [GitHub](https://github.com/lldap/lldap)
## Pages Liées
- [[cat-identity-management]] — Catégorie Identity Management
- [[app-authelia]] — SSO qui consomme LLDAP
- [[recettes-docker-compose]] — Templates Docker