We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm looking for an option to use a HTTPS URL with a self-signed certificate.
The solution could either ignore SSL warnings all together, or an option to provide a CA bundle to trust.
I was unable to figure out a way to do this with axios_config.
axios_config
The URL I'm attempting to use is at https://gdmf.apple.com/v2/pmv.
The text was updated successfully, but these errors were encountered:
Hi @n8felton!
A little bit of digging around suggests that adding this key to the axios config string should disable selfsigned cert checks:
httpsAgent: new https.Agent({ rejectUnauthorized: false })
I'm not sure how you'd supply your own cert bundle but I suspect it's possible, if you check it into the repo maybe:
httpsAgent: new https.Agent({ ca: MY_CA_BUNDLE });
Hopefully that leads to some success!
Sorry, something went wrong.
No branches or pull requests
I'm looking for an option to use a HTTPS URL with a self-signed certificate.
The solution could either ignore SSL warnings all together, or an option to provide a CA bundle to trust.
I was unable to figure out a way to do this with
axios_config
.The URL I'm attempting to use is at https://gdmf.apple.com/v2/pmv.
The text was updated successfully, but these errors were encountered: