I have a personal Python repository set up with https and I'm able to upload to it using the following command:
twine upload <dist> -r <my_server> --cert <path/to/certfile>
However, I'd like to be able to upload without having to explicitly specify the CA cert location. I believe I've installed the CA cert in the correct location for my system (using How to add Certificate Authority in centos7? as guidance, and verified using wget), but I still have to call out the raw path.
How can I make twine use my alternate CA cert by default?