Keystone Jack
Keystone Jack

Reputation: 309

Node-Red DEPTH_ZERO_SELF_SIGNED_CERT

When I do a GET request from a site with self signed CERT, I get

"DEPTH_ZERO_SELF_SIGNED_CERT"

Any idea what I can do to fix it?

Upvotes: 1

Views: 4044

Answers (1)

hardillb
hardillb

Reputation: 59638

In the http-request config tick the "Enable secure (SSL/TLS) connection" then add a new TLS config:

enter image description here

Then on the tls-config screen you can add the self signed certificate to the CA Certificate section or you can disable all SSL certificate checking by un tick the "Verify server certificate" box. (This is a bad idea as it makes it really easy for somebody to Man in the Middle the site)

enter image description here

Upvotes: 2

Related Questions