Skip to content
This repository was archived by the owner on Mar 12, 2019. It is now read-only.
Shaun Jackman edited this page Mar 28, 2017 · 17 revisions

Problem: curl: (60) SSL certificate problem: unable to get local issuer certificate or curl: (77) error setting certificate verify locations

Solution: This error message indicates that curl is not able to establish a secure connection. To use an insecure connection for both curl and git, run:

echo insecure >> ~/.curlrc
git config --global http.sslVerify false

To undo these changes and use a secure connection again, run:

sed -i '/^insecure$/d' ~/.curlrc
git config --global http.sslVerify true
Clone this wiki locally