# HG changeset patch # User Kim Alvefur # Date 1397937593 -7200 # Node ID 3b4fde51fa25809d120b0f7fddda2bb3b5f2feab # Parent 2f911644f5271040b916f3365556e017ed86bcfb mod_http: Update to disable peer verification with the new certmanager diff -r 2f911644f527 -r 3b4fde51fa25 plugins/mod_http.lua --- a/plugins/mod_http.lua Fri Apr 18 07:51:41 2014 +0200 +++ b/plugins/mod_http.lua Sat Apr 19 21:59:53 2014 +0200 @@ -142,7 +142,13 @@ listener = server.listener; default_port = 5281; encryption = "ssl"; - ssl_config = { verify = "none" }; + ssl_config = { + verify = { + peer = false, + client_once = false, + "none", + } + }; multiplex = { pattern = "^[A-Z]"; };