Mercurial > prosody-wiki
comparison mod_auth_ccert.wiki @ 369:1861f3e1e9ff
mod_auth_ccert: Add page
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 28 Jun 2013 18:21:37 +0200 |
parents | |
children | a21acacc8b22 |
comparison
equal
deleted
inserted
replaced
368:8d86e6502696 | 369:1861f3e1e9ff |
---|---|
1 #summary Client Certificate authentication module | |
2 | |
3 = Introduction = | |
4 | |
5 This module implements PKI-style client certificate authentication. | |
6 You will therefore need your own Certificate Authority. | |
7 How to set that up is beyond the current scope of this document. | |
8 | |
9 = Configuration = | |
10 | |
11 {{{ | |
12 | |
13 authentication = "ccert" | |
14 certificate_match = "xmppaddr" -- or "email" | |
15 | |
16 c2s_ssl = { | |
17 -- key and certificate | |
18 capath = "/path/to/dir/with/your/ca" | |
19 } | |
20 | |
21 }}} | |
22 | |
23 = Compatibility = | |
24 | |
25 ||trunk||Works|| | |
26 ||0.9 and earlier||Doesn't work|| |