link-checker icon indicating copy to clipboard operation
link-checker copied to clipboard

Consider offering a option to ignore SSL errors

Open lilith opened this issue 11 years ago • 0 comments

Problem: http://localhost:4001/blog/2012 Link: https://github.com/nathanaeljones/ Response: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed Link: https://plusone.google.com/_/+1/confirm?url=http://imageresizing.net/ Response: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed Link: https://github.com/imazen/ Response: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed Link: https://github.com/imazen/resizer-web/edit/smart-theme-migration/content/blog/index.slim Response: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed

http://stackoverflow.com/questions/4528101/ssl-connect-returned-1-errno-0-state-sslv3-read-server-certificate-b-certificat

To disable cert checking;

require 'openssl' OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE

I'm running OS X, and have not been able to get any of the solutions on SO to work properly.

lilith avatar Mar 06 '13 13:03 lilith