# HG changeset patch # User Kim Alvefur # Date 1612643665 -3600 # Node ID e83284d4d5c2bc4d266991e17a6ef82d8d69a7f0 # Parent 8b69e0b56db2be28359952803b801fcee5ab6c09 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 diff -r 8b69e0b56db2 -r e83284d4d5c2 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 }