About to attend a course and a requirement is a laptop with linux
or cygwin
Another is
cygwin requires https support to be installed
This is likely because I will need to use cUrl
to fetch https
pages
So I installed and updated cygwin
to latest, but cannot find anywhere how to "install https support"
UPDATE
- downloaded certificates from mozilla as suggested in https://stackoverflow.com/a/13105921/562459
- exported proxy settings - needs to go in the .bashrc or similar
export http_proxy=http://nameofyourproxy:xxxx/
export https_proxy=http://nameofyourproxy:xxxx/
where xxxx is the proxy port number
you need BOTH http and https if not you get
curl: (6) Couldn't resolve host 'www.google.com'
when you do
curl -L https://www.google.com
UPDATE 2
I needed to export https too of course and I needed to put the certs in the right place.
CAfile: /usr/ssl/certs/ca-bundle.crt
So I renamed the download to ca-bundle.crt and copied it to
<install path>cygwin\usr\ssl\certs
and that was it.