Jitsi Ldap: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| Zeile 18: | Zeile 18: | ||
} | } | ||
</pre> | </pre> | ||
| + | =enable ldap= | ||
| + | *cd /etc/prosody/conf.d | ||
| + | *ln -s ../conf.avail/ldap.cfg.lua . | ||
Version vom 23. März 2020, 20:29 Uhr
Install Modules
- apt install prosody-modules
ldap config
- cat /etc/prosody/conf.avail/ldap.cfg.lua
authentication = "ldap2"
ldap = {
hostname = '127.0.0.1',
bind_dn = 'uid=jitsi,ou=admins,dc=xxx,dc=de',
bind_password = 'secret',
use_tls = false,
user = {
usernamefield = 'uid',
basedn = 'ou=users,dc=xxx,dc=de',
filter = '(memberOf=cn=video,ou=groups,dc=xxx,dc=de)',
namefield = 'uid',
},
}
enable ldap
- cd /etc/prosody/conf.d
- ln -s ../conf.avail/ldap.cfg.lua .