From 3b39ca75788230b58f31e1cbd55b61d11a546c20 Mon Sep 17 00:00:00 2001 From: Garry Ing Date: Sun, 18 Apr 2021 20:41:21 -0400 Subject: [PATCH] ignore ssl --- Rakefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index b957aba..dad07c5 100644 --- a/Rakefile +++ b/Rakefile @@ -27,7 +27,11 @@ task check: :build do assume_extension: true, http_status_ignore: [403], typhoeus: { - headers: { "User-Agent": 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:87.0) Gecko/20100101 Firefox/87.0' } + headers: { + "User-Agent": 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:87.0) Gecko/20100101 Firefox/87.0', + }, + "ssl_verifypeer": false, + "ssl_verifyhost": 0 } } HTMLProofer.check_directory('./_site', options).run