Is there a way to point to a specific tls cert file when using tls="native" #6874
|
I have pixi installed in a conda environment behind a corporate proxy. pip/conda/uv let me point to a specific tls cert file. If I use native tls in pixi it will attempt to read every cert in /etc/pki/tls/certs and generate warnings for certs I dont have read access to, and these warnings are emitted when running almost every pixi command. Ive talked with support and they say there is no guarantee to have read access to every cert in this directory, so is there a way in pixi to specify a specific cert file or list of certs to use for tls? |
8000
You must be logged in to vote
Answered by
baszalmstra
Aug 20, 2026
Replies: 1 comment 1 reply
|
I think you could use |
1 reply
Answer selected by
weg-jr
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you could use
SSL_CERT_FILEorSSL_CERT_DIRfor that purpose. I think that similar to pip/conda/uv. Does that help?