Heroku: UNABLE_TO_GET_ISSUER_CERT_LOCALLY: unable to obtain a local issuer certificate

I ran into a problem while creating a new heroku application on cli

C:\sami\foodOrder\foodOrder>heroku create
Creating app... !
 !    UNABLE_TO_GET_ISSUER_CERT_LOCALLY: unable to get local issuer certificate

This happens even on a clone of an existing application.

+5
source share
3 answers

As a temporary workaround, you can disable SSL checking by setting the environment variable:

HEROKU_SSL_VERIFY=disable

+2
source

Heroku , , , . , , .

SSL_CERT_FILE , SSL Ruby on Windows, Heroku, (. path/to/Heroku/lib/cacert.pem).

, SSL_CERT_FILE , Figaro . heroku .

0

Add the following to your .bowerrc file:

"registry": "http://bower.herokuapp.com"
0
source

Source: https://habr.com/ru/post/1666699/


All Articles