Donald T
Donald T

Reputation: 10667

"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?

Upvotes: 4

Views: 4283

Answers (2)

PaulAndrewLang
PaulAndrewLang

Reputation: 379

If you are using node 0.10.34, this could be the issue https://github.com/joyent/node/issues/8894

Recommend using v0.10.33 for now.

Upvotes: 0

Donald T
Donald T

Reputation: 10667

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

Upvotes: 16

Related Questions