mirror of
https://github.com/lldap/lldap.git
synced 2024-11-25 00:50:55 +00:00
18 lines
596 B
Markdown
18 lines
596 B
Markdown
# Configuration for Apereo CAS Server
|
|
|
|
Replace `dc=example,dc=com` with your LLDAP configured domain, and hostname for your LLDAP server.
|
|
|
|
The `search-filter` provided here requires users to be members of the `cas_auth` group in LLDAP.
|
|
|
|
Configuration to use LDAP in e.g. `/etc/cas/config/standalone.yml`
|
|
```
|
|
cas:
|
|
authn:
|
|
ldap:
|
|
- base-dn: dc=example,dc=com
|
|
bind-credential: password
|
|
bind-dn: uid=admin,ou=people,dc=example,dc=com
|
|
ldap-url: ldap://ldap.example.com:3890
|
|
search-filter: (&(objectClass=person)(memberOf=uid=cas_auth,ou=groups,dc=example,dc=com))
|
|
```
|
|
|