Mercurial > prosody-wiki
annotate mod_auth_ccert.wiki @ 396:5720e3f68061
Update docs for lpty-based version
author | MWild1@gmail.com |
---|---|
date | Tue, 13 Aug 2013 17:47:14 +0000 |
parents | a21acacc8b22 |
children | 0df264dd44c4 |
rev | line source |
---|---|
369 | 1 #summary Client Certificate authentication module |
381
a21acacc8b22
mod_auth_ccert and mod_auth_ldap2: Add Type-Auth labels
Kim Alvefur <zash@zash.se>
parents:
369
diff
changeset
|
2 #labels Stage-Alpha,Type-Auth |
369 | 3 |
4 = Introduction = | |
5 | |
6 This module implements PKI-style client certificate authentication. | |
7 You will therefore need your own Certificate Authority. | |
8 How to set that up is beyond the current scope of this document. | |
9 | |
10 = Configuration = | |
11 | |
12 {{{ | |
13 | |
14 authentication = "ccert" | |
15 certificate_match = "xmppaddr" -- or "email" | |
16 | |
17 c2s_ssl = { | |
18 -- key and certificate | |
19 capath = "/path/to/dir/with/your/ca" | |
20 } | |
21 | |
22 }}} | |
23 | |
24 = Compatibility = | |
25 | |
26 ||trunk||Works|| | |
27 ||0.9 and earlier||Doesn't work|| |