lldap/example_configs/jellyfin.md
Juli 0b323d4852
Update Jellyfin Docs
It is lacking an explanation of the Base DN setting.
2023-02-11 23:11:48 +00:00

57 lines
881 B
Markdown

# Configuration for Jellyfin
Replace `dc=example,dc=com` with your LLDAP configured domain.
### LDAP Bind User
```
uid=admin,ou=people,dc=example,dc=com
```
### LDAP Base DN for searches
```
ou=people,dc=example,dc=com
```
### LDAP Attributes
```
uid, mail
```
### LDAP Name Attribute
```
uid
```
### User Filter
If you have a `media` group, you can use:
```
(memberof=cn=media,ou=groups,dc=example,dc=com)
```
Otherwise, just use:
```
(uid=*)
```
### Admins Base DN
The DN of your admin group. If you have `media_admin` as your group you would use:
```
cn=admins,ou=groups,dc=example,dc=com
```
### 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)
```