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
It would be useful to support global settings for the CA bundle in similar manner as e.g. python requests have it https://requests.readthedocs.io/en/latest/user/advanced/?highlight=REQUESTS_CA_BUNDLE#ssl-cert-verification using also the CURL_CA_BUNDLE env var would make it easier for other people who are dealing with CA bundles in other systems or languages.
CURL_CA_BUNDLE
I know now it can be done using
conf = SSLConfig() MbedTLS.ca_chain!(conf, MbedTLS.crt_parse(cert_file))
or
HTTP.ConnectionPool.default_sslconfig = SSLConfig(...)
but it would be useful to have option which would not need code change.
The text was updated successfully, but these errors were encountered:
Support specifying CA_BUNDLE via env variables
57f8034
Fixes #925.
Sorry for the slowness; implemented in #933
Sorry, something went wrong.
Support specifying CA_BUNDLE via env variables (#933)
4364f2a
Successfully merging a pull request may close this issue.
It would be useful to support global settings for the CA bundle in similar manner as e.g. python requests have it https://requests.readthedocs.io/en/latest/user/advanced/?highlight=REQUESTS_CA_BUNDLE#ssl-cert-verification using also the
CURL_CA_BUNDLE
env var would make it easier for other people who are dealing with CA bundles in other systems or languages.I know now it can be done using
or
but it would be useful to have option which would not need code change.
The text was updated successfully, but these errors were encountered: