Disable TLSv1 to fix *received tlsv1 alert protocol version from* errors with certain websites

This commit is contained in:
Narcis Tesa 2018-09-19 16:25:39 -04:00
parent 421c897dd3
commit 4c5996a499

View File

@ -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",
}