From 9bc662b9b6d81811db40a18aef56dc1833ed55d6 Mon Sep 17 00:00:00 2001
From: Ben Penkacik <ben.penkacik@gmail.com>
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))
+```