From 44574426d076c15f67ee9738b1c8c86d71910cce Mon Sep 17 00:00:00 2001 From: Neil Lathwood Date: Sat, 19 Nov 2016 15:56:52 +0000 Subject: Updated config options --- README.md | 4 ++-- lib/oxidized/source/http.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a1aee03..ea70c47 100644 --- a/README.md +++ b/README.md @@ -506,7 +506,7 @@ source: X-Auth-Token: 'somerandomstring' ``` -You can also pass `no_check_certificate = true` if you want to disable ssl certificate verification: +You can also pass `secure: false` if you want to disable ssl certificate verification: ``` source: @@ -514,7 +514,7 @@ source: http: url: https://url/api scheme: https - no_check_certificate: true + secure: false ``` ### Output: File 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 = {} -- cgit v1.2.1