ionic 3 / node.js - Self signed certificate in cer

2019-06-18 04:43发布

I cannot create a ionic project with ionic start because of following error:

Error: self signed certificate in certificate chain
    at TLSSocket.<anonymous> (_tls_wrap.js:1103:38)
    at emitNone (events.js:106:13)
    at TLSSocket.emit (events.js:208:7)
    at TLSSocket._finishInit (_tls_wrap.js:637:8)
    at TLSWrap.ssl.onhandshakedone (_tls_wrap.js:467:38)

on cmd: ionic start myApp tabs

Because our proxy sends a self-signed signature for all sites. (FortiGate of FortiNet)

In npm I set strict-ssl to false and works fine. But ionic loads the content over a node application, right?

How to setup node to ignore self signed certificates for all node applications or how to disable it for ionic?

ionic info

   @ionic/cli-utils  : 1.19.0
    ionic (Ionic CLI) : 3.19.0

System:

    Node : v8.9.1
    npm  : 5.5.1
    OS   : Windows 10

Misc:

    backend : legacy

3条回答
forever°为你锁心
2楼-- · 2019-06-18 05:12

I fixed it by disabling my antivirus.

查看更多
我欲成王,谁敢阻挡
3楼-- · 2019-06-18 05:13

Setting set NODE_TLS_REJECT_UNAUTHORIZED=0 comes at a great risk to the security of your application. I would recommend avoiding this "work around" for production software. I recommend reading this before disabling.

I'm still trying to fix my own issue and will update if I come up with a safer solution.

查看更多
Deceive 欺骗
4楼-- · 2019-06-18 05:18

I resolved my problem using:

set NODE_TLS_REJECT_UNAUTHORIZED=0
查看更多
登录 后发表回答