I have an html file I'm converting with media links that use https. I get the following error:
but when i do the same thing with curl, it works:
Any idea what's going on here?
(sorry about the (domain) stuff, i can't post urls)
$ prince --ssl-ca-cert=cert.crt --baseurl=https(domain) doc.html
prince: https(domain)/css/main.css: warning: SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
but when i do the same thing with curl, it works:
curl --cacert cert.crt https(domain)/css/main.css
Any idea what's going on here?
(sorry about the (domain) stuff, i can't post urls)