mod_auth_ccert/README: Add setting to ensure Prosdy asks for client certificate
authorKim Alvefur <zash@zash.se>
Sat, 06 Feb 2021 21:34:25 +0100
changeset 4436 e83284d4d5c2
parent 4435 8b69e0b56db2
child 4437 0e3f5f70a51d
mod_auth_ccert/README: Add setting to ensure Prosdy asks for client certificate This used to be the default for all services, but since it triggers annoying popups in web browsers it was inverted in Prosody and only s2s enables it, so it needs to be explicitly enabled for c2s again. See trunk 115b5e32d960 Thanks debacle
mod_auth_ccert/README.markdown
--- a/mod_auth_ccert/README.markdown	Fri Feb 05 15:45:55 2021 +0100
+++ b/mod_auth_ccert/README.markdown	Sat Feb 06 21:34:25 2021 +0100
@@ -22,6 +22,7 @@
     c2s_ssl = {
         cafile = "/path/to/your/ca.pem";
         capath = false; -- Disable capath inherited from built-in default
+        verify = {"peer"; "client_once"}; -- Ask for client certificate
     }