我已按照入门指南将nodejs
应用程序部署到heroku:
I reached to this stage in the tutorial
当我尝试编写命令时:
heroku create
它给了我这个错误:
UNABLE_TO_GET_ISSUER_CERT_LOCALLY: unable to get local issuer certificate
可能是什么问题?
答案 0 :(得分:0)
尝试这样做:
编辑Git配置文本文件(使用我最喜欢的行结束中性应用程序,如Notepad ++)位于:
C:\Program Files (x86)\Git\etc\gitconfig
在[http]块中,添加一个禁用sslVerify的选项。我完成后看起来像这样:
[http]
sslVerify = false
sslCAinfo = /bin/curl-ca-bundle.crt
答案与this
有关答案 1 :(得分:0)
问题是我的互联网上有一个网络过滤器,一个内容过滤器,它阻止了命令
heroku create
通过。
答案 2 :(得分:0)
运行以下行:
npm config set strict-ssl false
答案 3 :(得分:0)