I recently received a PositiveSSL certificate in Namecheap and installed it on my server. Accessing the site from Firefox works fine, but accessing it from the Ruby net / https library does not work: it cannot verify the connection certificate, even if I specified the path to the certificate, and I checked that the file is readable, Curl also fails :
curl --cacert /path/to/cert https://mysite.com/
He just says something like this:
curl: (60) SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed More details here: http:
"certificate verification failed" is not a terribly useful error message. How to find out what exactly is wrong with my certificate and what to do with it? I am confused that it works in a browser, but not elsewhere.
source share