If you want to use curl or net-http/open-uri to access https resources, you will often (always?) get an error, because they don't have the large number of root certificates installed that web browsers have.
You can manually install the root certs, but first you have to get them from somewhere. This article gives a nice description of how to do that. The source of the cert files it points to is hosted by the curl project, who kindly provide it in the .pem format.
problem: Sadly, ironically, and comically, it's not possible to access that file via https! Luckily, the awesome curl project does provide us with the script that they use to produce the file, so we can do it securely ourselves. Here's how.
-
git clone https://github.com/bagder/curl.git
-
cd curl/lib
-
edit
mk-ca-bundle.pl
and change:my $url = 'http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1';
to
my $url = 'https://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1';
(change
http
tohttps
) -
./mk-ca-bundle.pl
Ta da!
Yes, that is quite ironic and I'm glad I was not the only one to see the irony and that I came across this post quickly enough (I could easily see myself scouring the internet obsessively looking for the answer).
Thank you for providing a solution. And I'm sure we can write a script from it and run it in a cronjob for automatic updates of the CA bundle.
As great as all of the Linux tools are, I'm a bit surprised that they often seem to miss something obvious (like auto update for the CA bundle) that complicates things, but then maybe I just don't understand.
Thanks again.