Software /
code /
prosody
Comparison
plugins/mod_http.lua @ 6966:3e3a83be7e14
Backout unintentional commit ed5440a6ef7f
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 03 Dec 2015 16:21:56 +0000 |
parent | 6964:ed5440a6ef7f |
child | 7247:44b39c02eb33 |
comparison
equal
deleted
inserted
replaced
6965:5360bdf93fce | 6966:3e3a83be7e14 |
---|---|
156 module:provides("net", { | 156 module:provides("net", { |
157 name = "https"; | 157 name = "https"; |
158 listener = server.listener; | 158 listener = server.listener; |
159 default_port = 5281; | 159 default_port = 5281; |
160 encryption = "ssl"; | 160 encryption = "ssl"; |
161 ssl_config = default_ssl_config; | 161 ssl_config = { |
162 verify = { | |
163 peer = false, | |
164 client_once = false, | |
165 "none", | |
166 } | |
167 }; | |
162 multiplex = { | 168 multiplex = { |
163 pattern = "^[A-Z]"; | 169 pattern = "^[A-Z]"; |
164 }; | 170 }; |
165 }); | 171 }); |