From 4c5996a499bad70a355a2dc581b70a42209973f2 Mon Sep 17 00:00:00 2001 From: Narcis Tesa Date: Wed, 19 Sep 2018 16:25:39 -0400 Subject: [PATCH] Disable TLSv1 to fix *received tlsv1 alert protocol version from* errors with certain websites --- src/https.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/https.lua b/src/https.lua index 35371dd..ee953f0 100644 --- a/src/https.lua +++ b/src/https.lua @@ -27,7 +27,7 @@ local _M = { -- TLS configuration local cfg = { protocol = "any", - options = {"all", "no_sslv2", "no_sslv3"}, + options = {"all", "no_sslv2", "no_sslv3", "no_tlsv1"}, verify = "none", }