You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@dylanlingelbach It's not a great suggestion, but, perhaps an environment variable to allow self signed certs? the circleci instance i'm using is hosted internally and uses a self-signed cert.
@kennyg - I would need to test that passing rejectUnauthorized: false to the requests would work. But what is the advantage to an environment variable for that instead of just setting process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0"?
we use self-signed certs with an internal circleci instance. the requests fail with this error
workaround is to add this setting: process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0"
The text was updated successfully, but these errors were encountered: