mfreiholz
mfreiholz

Reputation: 717

Error: unable to verify the first certificate / How to trust all certificates?

When I try to install an extension I get this error:

unable to verify the first certificate

I already know that the problem is our internal network structure, which wraps every SSL Certificate with our own and not every application trusts our certificate.

Is it possible to set the property Trust all SSL certificates in Visual Studio Code?

Thanks

Upvotes: 7

Views: 20767

Answers (2)

Leandro Gomide
Leandro Gomide

Reputation: 1008

My solution was to add the following to user settings ( File -> Preferences -> User Settings)

"http.proxyStrictSSL": false

Upvotes: 8

Max
Max

Reputation: 186

Had the same problem.

Adding environment variable

NODE_TLS_REJECT_UNAUTHORIZED=0

fixed it. Took this answer from here: Ignore invalid self-signed ssl certificate in node.js with https.request?

Upvotes: 17

Related Questions