diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-12-03 16:21:56 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-12-03 16:21:56 +0000 |
commit | e5e327d5dbf8a7504fb909b4795d27ebe82e7cdc (patch) | |
tree | 324d9ac0d5466e46210ae213858555dc86402359 /plugins | |
parent | 668d9211112be0103194ff616206b4c35b621a2e (diff) | |
download | prosody-e5e327d5dbf8a7504fb909b4795d27ebe82e7cdc.tar.gz prosody-e5e327d5dbf8a7504fb909b4795d27ebe82e7cdc.zip |
Backout unintentional commit ed5440a6ef7f
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_http.lua | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua index 598028ee..086887fb 100644 --- a/plugins/mod_http.lua +++ b/plugins/mod_http.lua @@ -158,7 +158,13 @@ module:provides("net", { listener = server.listener; default_port = 5281; encryption = "ssl"; - ssl_config = default_ssl_config; + ssl_config = { + verify = { + peer = false, + client_once = false, + "none", + } + }; multiplex = { pattern = "^[A-Z]"; }; |