From 407ff6133c2fc6399474793fc07f7d23225a00b6 Mon Sep 17 00:00:00 2001 From: Bruno Silvestre Date: Tue, 16 Feb 2016 09:35:47 -0200 Subject: [PATCH] Use "any" protocol, but SSL. --- src/https.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/https.lua b/src/https.lua index 1c042c7..93fc78a 100644 --- a/src/https.lua +++ b/src/https.lua @@ -25,8 +25,8 @@ local _M = { -- TLS configuration local cfg = { - protocol = "tlsv1", - options = "all", + protocol = "any", + options = {"all", "no_sslv2", "no_sslv3"}, verify = "none", }