2
'curl'默認使用哪些證書?'curl'默認使用哪些證書?
例子:
curl -I -L https://cruises.webjet.com.au
在Ubuntu 15.04失敗,
curl: (60) SSL certificate problem: unable to get local issuer certificate
但當我添加根證書(見https://www.ssllabs.com/ssltest/analyze.html?d=cruises.webjet.com.au&latest),然後運行
curl -I -L --cacert downlaodedCert.pem https://cruises.webjet.com.au
一切都很好。所以我猜'curl'默認不使用這個根證書。
但我怎樣才能看到它使用哪個證書?