From 15c28110b5f43e27c8e5cd4d8aebe89ecb45b3f2 Mon Sep 17 00:00:00 2001 From: Josh Thorpe <33478918+ThorpeJosh@users.noreply.github.com> Date: Wed, 24 Jul 2024 20:46:40 +0800 Subject: [PATCH] example_configs: clean up jellyfin.md Restructured to match the jellyfin plugin UI. --- example_configs/jellyfin.md | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/example_configs/jellyfin.md b/example_configs/jellyfin.md index 0b65c5d..ab07952 100644 --- a/example_configs/jellyfin.md +++ b/example_configs/jellyfin.md @@ -1,10 +1,12 @@ # Configuration for Jellyfin -Replace `dc=example,dc=com` with your LLDAP configured domain. +Replace all instances of `dc=example,dc=com` with your LLDAP configured domain. +## LDAP Server Settings ### LDAP Bind User +Create an ldap user for Jellyfin to run search queries (and optionally reset passwords). For example `jellyfin_bind_user` ``` -uid=admin,ou=people,dc=example,dc=com +uid=jellyfin_bind_user,ou=people,dc=example,dc=com ``` ### LDAP Base DN for searches @@ -12,31 +14,30 @@ uid=admin,ou=people,dc=example,dc=com ou=people,dc=example,dc=com ``` -### LDAP Attributes - -``` -uid, mail -``` - -### LDAP Name Attribute - -``` -uid -``` - -### User Filter - +## LDAP User Settings +### LDAP Search Filter If you have a `media` group, you can use: ``` (memberof=cn=media,ou=groups,dc=example,dc=com) ``` - Otherwise, just use: ``` (uid=*) ``` -### Admin Base DN +### LDAP Search Attributes +``` +uid, mail +``` +### LDAP Uid Attribute +``` +uid +``` +### LDAP Username Attribute +``` +uid +``` +### LDAP Admin Base DN The DN to search for your admins. ``` ou=people,dc=example,dc=com