comparison mod_auth_ldap.wiki @ 137:eb945500dae4

mod_auth_ldap: Added some documentation.
author Waqas Hussain <waqas20@gmail.com>
date Thu, 01 Jul 2010 00:53:29 +0500
parents
children dbe3fcc3dbbb
comparison
equal deleted inserted replaced
136:927270e0b963 137:eb945500dae4
1 #summary LDAP authentication module
2 #labels Stage-Alpha
3
4 = Introduction =
5
6 This is a Prosody authentication plugin which uses LDAP as the backend.
7
8 = Configuration =
9
10 Copy the module to the prosody modules/plugins directory.
11
12 In Prosody's configuration file, under the desired host section, add:
13 {{{
14 authentication = "ldap"
15 }}}
16
17 LDAP options are:
18 || *Name* || *Description* || *Default value* ||
19 || ldap_server || space-separated list of hostnames or IPs || "localhost" ||
20 || ldap_rootdn || the distinguished name to auth against || "" (anonymous) ||
21 || ldap_password || the password || "" ||
22 || ldap_tls || Use TLS to connect to LDAP? (can be true or false) || false ||
23 || ldap_base || LDAP base directory which stores user accounts || this is required ||
24
25 = Compatibility =
26
27 || trunk || Untested, but should work ||