diff options
author | Neil Lathwood <neil@lathwood.co.uk> | 2016-11-19 15:56:52 +0000 |
---|---|---|
committer | Neil Lathwood <neil@lathwood.co.uk> | 2016-11-19 15:56:52 +0000 |
commit | 44574426d076c15f67ee9738b1c8c86d71910cce (patch) | |
tree | 643ce58b4137353eedc6c5ae132aeceed91e20aa /lib | |
parent | 59e82bba2befb6ef5049ea9ae4e876327f3da158 (diff) |
Updated config options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/oxidized/source/http.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oxidized/source/http.rb b/lib/oxidized/source/http.rb index 6f16aee..4fd388b 100644 --- a/lib/oxidized/source/http.rb +++ b/lib/oxidized/source/http.rb @@ -20,7 +20,7 @@ class HTTP < Source uri = URI.parse(@cfg.url) http = Net::HTTP.new(uri.host, uri.port) http.use_ssl = true if uri.scheme == 'https' - http.verify_mode = OpenSSL::SSL::VERIFY_NONE if uri.no_check_certificate == true + http.verify_mode = OpenSSL::SSL::VERIFY_NONE unless @cfg.secure # map headers headers = {} |