我正在尝试使用以下自定义身份验证连接到在 AWS EC2 实例上运行的 solr 服务器:https ://github.com/django-haystack/pysolr/tree/5c3a68447734e77be9e9648b184f8d600fd661c5
solr = pysolr.Solr('https://path_to_the_loadbalancer/solr/collection_name',
auth=HTTPBasicAuth('username', 'password'), verify=path/to/cert.perm)
问题:如果证书存在于 AWS ACM 中,如何提供证书路径?
我尝试保持 verify=False 有效,但我想找出提供证书的正确方法