Mercurial > prosody-wiki
annotate mod_auth_ldap.wiki @ 403:6c54b5a7ccfb
Document ldap_scope
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 04 Nov 2013 17:44:29 +0100 |
parents | c5d049266555 |
children | eb372e6bb82f |
rev | line source |
---|---|
137
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
1 #summary LDAP authentication module |
181 | 2 #labels Stage-Alpha,Type-Auth |
137
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
3 |
183
99ccedc61bca
Edited wiki page mod_auth_ldap through web user interface.
MWild1
parents:
181
diff
changeset
|
4 _*Note:* A modified version of this module is available, but is not yet committed here. The plan is to merge them, for more info see [http://groups.google.com/group/prosody-dev/browse_thread/thread/282e876116ae4177/906121492495ad35#906121492495ad35 this thread]._ |
99ccedc61bca
Edited wiki page mod_auth_ldap through web user interface.
MWild1
parents:
181
diff
changeset
|
5 |
137
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
6 = Introduction = |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
7 |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
8 This is a Prosody authentication plugin which uses LDAP as the backend. |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
9 |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
10 = Configuration = |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
11 |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
12 Copy the module to the prosody modules/plugins directory. |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
13 |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
14 In Prosody's configuration file, under the desired host section, add: |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
15 {{{ |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
16 authentication = "ldap" |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
17 }}} |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
18 |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
19 LDAP options are: |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
20 || *Name* || *Description* || *Default value* || |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
21 || ldap_server || space-separated list of hostnames or IPs || "localhost" || |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
22 || ldap_rootdn || the distinguished name to auth against || "" (anonymous) || |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
23 || ldap_password || the password || "" || |
400
c5d049266555
mod_auth_ldap: Document ldap_filter option
Kim Alvefur <zash@zash.se>
parents:
183
diff
changeset
|
24 || ldap_filter || search filter, with %s substituded for username || "(uid=%s)" || |
403 | 25 || ldap_scope || search scope. other values: "base" and "subtree" || "onelevel" || |
137
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
26 || ldap_tls || Use TLS to connect to LDAP? (can be true or false) || false || |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
27 || ldap_base || LDAP base directory which stores user accounts || this is required || |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
28 |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
29 = Compatibility = |
eb945500dae4
mod_auth_ldap: Added some documentation.
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
30 |
400
c5d049266555
mod_auth_ldap: Document ldap_filter option
Kim Alvefur <zash@zash.se>
parents:
183
diff
changeset
|
31 || 0.8 and above || should work || |