Curl ssl certificates(卷曲 ssl 证书)
问题描述
我一直在 curl 中关闭 CURLOPT_SSL_VERIFYPEER,但我真的想在我的 php/centos/curl 检查其证书的地方进行升级.我有 CENTOS 4.7 i686,PHP 5.2.16.
I have always turned off CURLOPT_SSL_VERIFYPEER in curl but I really want to upgrade wherever my php/centos/curl checks its certs at. I have CENTOS 4.7 i686, PHP 5.2.16.
我从 stripe.com 得到了一个不错的捆绑包:https://pastebin.com/raw.php?i=NZE2CuVJ
I got a nice bundle from stripe.com: https://pastebin.com/raw.php?i=NZE2CuVJ
如何将它安装"到我什至不需要使用的地方
How do I "install" this to where I don't even need to use
curl_setopt($curl, CURLOPT_CAINFO, 'ca-certificates.crt');
推荐答案
将包保存为certificates.pem",并将其放在您的网络服务器上.然后使用
Save the bundle as "certificates.pem", and put it on your webserver. Then use
curl_setopt($curl, CURLOPT_CAINFO, '/link/to/directory/certificates.pem');
加载证书列表.此外,请确保您连接到正确的域.www.domain.com 可能有一个有效的证书,但 domain.com 可能没有.
to load the list of certificates. Also, make sure you're connecting to the right domain. www.domain.com might have a valid certificate, but domain.com might not.
更多信息:https://serverfault.com/questions/325120/curl-ssl-issue-with-rapidssl-certificates
这篇关于卷曲 ssl 证书的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:卷曲 ssl 证书
基础教程推荐
- Libpuzzle 索引数百万张图片? 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01