2022-04-17 21:21:32 +00:00
|
|
|
# Configuration for Jellyfin
|
|
|
|
|
|
|
|
Replace `dc=example,dc=com` with your LLDAP configured domain.
|
|
|
|
|
|
|
|
### LDAP Bind User
|
|
|
|
```
|
2022-04-29 07:46:46 +00:00
|
|
|
uid=admin,ou=people,dc=example,dc=com
|
2022-04-17 21:21:32 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### LDAP Base DN for searches
|
|
|
|
```
|
|
|
|
ou=people,dc=example,dc=com
|
|
|
|
```
|
|
|
|
|
2022-04-29 07:46:46 +00:00
|
|
|
### LDAP Attributes
|
|
|
|
|
|
|
|
```
|
|
|
|
uid, mail
|
|
|
|
```
|
|
|
|
|
|
|
|
### LDAP Name Attribute
|
|
|
|
|
|
|
|
```
|
|
|
|
uid
|
|
|
|
```
|
|
|
|
|
2022-04-17 21:21:32 +00:00
|
|
|
### User Filter
|
|
|
|
|
|
|
|
If you have a `media` group, you can use:
|
|
|
|
```
|
|
|
|
(memberof=cn=media,ou=groups,dc=example,dc=com)
|
|
|
|
```
|
|
|
|
|
|
|
|
Otherwise, just use:
|
|
|
|
```
|
|
|
|
(uid=*)
|
|
|
|
```
|
2023-02-12 10:10:52 +00:00
|
|
|
### Admin Base DN
|
|
|
|
|
|
|
|
The DN of your admin group. If you have `media_admin` as your group you would use:
|
|
|
|
```
|
|
|
|
cn=media_admin,ou=groups,dc=example,dc=com
|
|
|
|
```
|
2022-04-17 21:21:32 +00:00
|
|
|
|
|
|
|
### Admin Filter
|
|
|
|
|
|
|
|
Same here. If you have `media_admin` group (doesn't have to be named like
|
|
|
|
that), use:
|
|
|
|
```
|
|
|
|
(memberof=cn=media_admin,ou=groups,dc=example,dc=com)
|
|
|
|
```
|
|
|
|
|
|
|
|
Otherwise, you can use LLDAP's admin group:
|
|
|
|
```
|
|
|
|
(memberof=cn=lldap_admin,ou=groups,dc=example,dc=com)
|
|
|
|
```
|