我正在使用Apache mod_ssl模块的自签名证书,但我正在
> curl_easy_perform() failed on: https://localhost/auth/example (SSL
> certificate problem: self signed certificate)
他们是否有办法让ssl不失败?我知道curl有选项--insecure或-k所以有什么类似我可以添加到http-ssl.conf吗?
答案 0 :(得分:0)
mod_ssl
将显示其配置的任何证书。客户决定是否接受所提供的证书;除了证书本身之外,您无法在mod_ssl
中配置任何会影响客户端验证的内容。
如果您希望Curl接受服务器证书,您可以:
--insecure
/ -k
(您已经知道)--cacert <CA certificate>
选项验证使用该CA的服务器证书。