Disable SSLv2 by default, it's known to be insecure.

This commit is contained in:
Paul Aurich 2009-12-04 09:48:08 -08:00
parent c82b309e78
commit a5dcc1d8c6
3 changed files with 4 additions and 3 deletions

View file

@ -282,6 +282,7 @@ function new_from_config(ports, handle_request, default_options)
if ssl then
ssl.mode = "server";
ssl.protocol = "sslv23";
ssl.options = "no_sslv2";
end
new{ port = port, interface = interface,