Comparison

plugins/mod_http.lua @ 7867:194f540e13e2

util.sslconfig: Remvoe flag merging for 'verify' as this is more of a tri-state field than a set of options
author Kim Alvefur <zash@zash.se>
date Thu, 26 Jan 2017 14:18:30 +0100
parent 7581:01d0d466d7be
child 7868:11fcdef5022f
child 9502:09e7b0048ebe
comparison
equal deleted inserted replaced
7866:b6d99132d7dc 7867:194f540e13e2
160 name = "https"; 160 name = "https";
161 listener = server.listener; 161 listener = server.listener;
162 default_port = 5281; 162 default_port = 5281;
163 encryption = "ssl"; 163 encryption = "ssl";
164 ssl_config = { 164 ssl_config = {
165 verify = { 165 verify = "none";
166 peer = false,
167 client_once = false,
168 "none",
169 }
170 }; 166 };
171 multiplex = { 167 multiplex = {
172 pattern = "^[A-Z]"; 168 pattern = "^[A-Z]";
173 }; 169 };
174 }); 170 });