From 049f542a244c3199cb1049f7d86c04541436210c Mon Sep 17 00:00:00 2001 From: Hobbabobba Date: Wed, 9 Nov 2022 18:32:40 +0100 Subject: [PATCH] Create zendto.md --- example_configs/zendto.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 example_configs/zendto.md diff --git a/example_configs/zendto.md b/example_configs/zendto.md new file mode 100644 index 0000000..88566d9 --- /dev/null +++ b/example_configs/zendto.md @@ -0,0 +1,18 @@ +# Configuration for Zendto + +You setup https://zend.to/ for using LDAP by editing `/opt/zendto/config/preferences.php`. The relevant part for LDAP-settings is +``` + 'authenticator' => 'LDAP', + 'authLDAPBaseDN' => 'DC=example,DC=com', + 'authLDAPServers' => array('ldap://ldap_server_ip:3890'), + 'authLDAPAccountSuffix' => '@example.com', + 'authLDAPUseSSL' => false, + 'authLDAPStartTLS' => false, + 'authLDAPBindDn' => 'uid=admin,ou=people,dc=example,dc=com', + 'authLDAPBindPass' => 'your_password', + 'authLDAPUsernameAttr' => 'uid', + 'authLDAPEmailAttr' => 'mail', + 'authLDAPMemberKey' => 'memberOf', + 'authLDAPMemberRole' => 'uid=zendto,ou=groups,dc=example,dc=com', +``` +Every user of the group `zendto` is allowed to login.