diff options
author | Marco Cirillo <maranda@lightwitch.org> | 2013-04-04 23:41:36 +0000 |
---|---|---|
committer | Marco Cirillo <maranda@lightwitch.org> | 2013-04-04 23:41:36 +0000 |
commit | 993348f0f768887090474010f36b212701b5acf2 (patch) | |
tree | 4c2281f7b55dfc54f5100ac1446fd48da3dfd9ab /plugins | |
parent | afd41edcdeddffd842332973fdcd386e326a2700 (diff) | |
download | prosody-993348f0f768887090474010f36b212701b5acf2.tar.gz prosody-993348f0f768887090474010f36b212701b5acf2.zip |
mod_http: disable ssl peer verification by default.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_http.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua index 2fa87421..0689634e 100644 --- a/plugins/mod_http.lua +++ b/plugins/mod_http.lua @@ -139,6 +139,7 @@ module:provides("net", { listener = server.listener; default_port = 5281; encryption = "ssl"; + ssl_config = { verify = "none" }; multiplex = { pattern = "^[A-Z]"; }; |