·
1 min read
·
1 comment
Turn Off SSL Verification In Ruby
The following code will disable SSL verification when using Open SSL. OpenSSL::SSL::VERIFYPEER = OpenSSL::SSL::VERIFYNONE It is probably not a good idea to do this in production. But if you are...