nodules
nodules copied to clipboard
https://
When sitting behind a proxy and trying to fetch http://github.com/A/B/zipball/master
there appear several redirects: http://github.com/A/B/zipball/master
---> https://github.com/A/B/zipball/master
---> https://nodeload.github.com/A/B/zipball/master
. Here node's createClient
fails since the certificate is issued for github.com
, not *.github.com
.
wget -v https://nodeload.github.com/A/B/zipball/master
will show that.
wget https://nodeload.github.com/A/B/zipball/master --no-check-certificate
works fine.
As temporary solution I use nodeload.github.com
in mappings, but this is ugly. Direct proxyless access is fine.
What can be done here?
TIA, --Vladimir