Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bower Error: Failed UNABLE_TO_VERIFY_LEAF_SIGNATURE

I received errors as in the following when I tried to install jquery using bower.

bower install jquery --save

bower error Request to https://bower.herokuapp.com/packages/jquery failed: UNABLE_TO_VERIFY_LEAF_SIGNATURE

Please help thanks.

like image 848
user3885815 Avatar asked Jul 28 '14 21:07

user3885815


1 Answers

I had this problem because bower couldn't verify the ssl signature correctly (because of our network). I added this to the .bowerrc file, and its solved the problem:

{
  "strict-ssl": false
}

I found this solution here

like image 186
amichai Avatar answered Oct 29 '22 23:10

amichai