Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"CERT_UNTRUSTED" error in Atom

When I try to view, update, or download any packages in GitHub's Atom, I receive a "CERT_UNTRUSTED" error. I am behind a corporate firewall.

Is there a way to disable NPM's strict SSL settings inside Atom to allow it to handle packages?

like image 485
Donald Taylor Avatar asked Dec 05 '22 04:12

Donald Taylor


1 Answers

As described here, Atom's own package manager is called APM. Add the following line to its configuration file "~/.atom/.apmrc" (creating the file if it doesn't exist):

strict-ssl = false
like image 194
Donald Taylor Avatar answered Dec 11 '22 10:12

Donald Taylor