if you’re trying to debug a website and you’re running some curl request and this might be a staging website or otherwise, with a self-signed ssl certificate maybe, then you could be running into: curl: (60) SSL certificate problem: certificate has expired
A real quick fix is to set curl to accept insecure connections by default in this manner:
echo “insecure” >> ~/.curlrc
Curl away!