Merge pull request #120 from narcistesa/update-tls-cfg

Disable TLSv1 protocol by default in https module
This commit is contained in:
Bruno Silvestre 2018-09-29 10:26:08 -03:00 committed by GitHub
commit 550777a9d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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