Skip to content
New issue

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

docs: add note about ssl_cert_file env var #2124

Merged
merged 2 commits into from
Mar 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,16 @@ to build on aarch64 Windows, but does not consider either platform to be support

uv supports and is tested against Python 3.8, 3.9, 3.10, 3.11, and 3.12.

## Custom CA Certificates

`uv` already supports custom CA certificates, such as those needed by corporate proxies,
by utilizing the system's trust store. To ensure this works out of the box, ensure your
certificates are already added to your system's trust store.

For specific instances where a direct path to the certificates is necessary (e.g. CI), you
can utilize the `SSL_CERT_FILE` environment variable, and assign it the path of your custom
certificate bundle and `uv` will use those certificates instead.

## Acknowledgements

uv's dependency resolver uses [PubGrub](https://github.com/pubgrub-rs/pubgrub) under the hood.
Expand Down