From 2eff37684dc7259f5f4168bca563123b053a029b Mon Sep 17 00:00:00 2001 From: poVoq Date: Fri, 11 Aug 2023 05:23:14 +0000 Subject: [PATCH] example_configs: Add config for The Lounge --- example_configs/thelounge.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 example_configs/thelounge.md diff --git a/example_configs/thelounge.md b/example_configs/thelounge.md new file mode 100644 index 0000000..3d8cf31 --- /dev/null +++ b/example_configs/thelounge.md @@ -0,0 +1,16 @@ +# Basic LDAP auth for a The Lounge IRC web-client + +[Main documentation here.](https://thelounge.chat/docs/configuration#ldap-support) + +For simple user auth with LLDAP on localhost adapt this in the main config.js: + +``` +ldap: { + enable: true, + url: "ldap://127.0.0.1:3890", + tlsOptions: {}, + primaryKey: "uid", + baseDN : "ou=people,dc=example,dc=com", +``` + +And comment out with ```//``` the entire ```searchDN``` block.