From 33cd850e652ac84a4b1d45e44dbc8beb9e9b3abf Mon Sep 17 00:00:00 2001 From: Ben Penkacik Date: Thu, 7 Jul 2022 17:52:50 -0400 Subject: [PATCH] docs: add emby config --- example_configs/emby.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 example_configs/emby.md diff --git a/example_configs/emby.md b/example_configs/emby.md new file mode 100644 index 0000000..cddad5d --- /dev/null +++ b/example_configs/emby.md @@ -0,0 +1,29 @@ +# Configuration for Emby + +Emby only uses LDAP to create users and validate passwords upon login. Emby administrators are always validated via native emby login. +https://emby.media/introducing-ldap-support-for-emby.html + +Replace `dc=example,dc=com` with your LLDAP configured domain. + +### Bind DN +``` +cn=admin,ou=people,dc=example,dc=com +``` + +### Bind Credentials +``` +changeme (replace with your password) +``` + +### User search base +``` +ou=people,dc=example,dc=com +``` + +### User search filter + +replace the `emby_user` cn with the group name for accounts that should be able to login to Emby, otherwise leave the default `(uid={0})`. + +``` +(&(uid={0})(memberOf=cn=emby_user,ou=groups,dc=example,dc=com)) +```