-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Self Signed Certificate #9
Comments
I get the same SSL error with the following composer.json file:
|
It's difficult to fix. But I can create new option for the solution. {
"config": {
"prestissimo": {
"insecure": true,
"capath": "/absolute/path/to/cacert.pem"
}
}
} insecure (bool)
If insecure is true, this plugin doesn't verify all https certs. (CURLOPT_VERIFYPEER is off) capath (string)
path to cacert.pem |
@EAnushan @jlmorales I released v0.1.5. $ composer global remove hirak/prestissimo
$ composer global install hirak/prestissimo |
The new options seem to work just fine. Thank you! |
Thanks for the update! I can also confirm it. I'm converting everyone at the office when they saw just how fast this is. :) Envy. The best marketing tool. LOL |
I'm using a local instance of toranproxy with a self signed certificate. I get the following error when running
composer update
.SSL certificate problem: self signed certificate:60
My .composer/config.json looks like this:
I've allowed self signed certificates here, and it works fine without the plugin. I'm assuming this option needs to be forwarded to the cURL handler that does the prefetching.
The text was updated successfully, but these errors were encountered: