2017-03-02 106 views

回答

3

原來它的IIS6用途(現在)過時其中的NodeJS的dev的認爲是不安全的被列爲默認ciphers

The connection to this site uses an obsolete protocol (TLS 1.0), andobsolete key exchange (RSA), and an obsolete cipher (3DES_EDE_CBC with HMAC-SHA1). 

要修復/旁路此SSL協議

在NodeJS中,添加ciphers: 'DES-CBC3-SHA'以請求選項。

在愛可信,下面添加到請求選項,

httpsAgent: new https.Agent({ 
ciphers: 'DES-CBC3-SHA' 
}) 

在請求中添加以下要求選項,

agentOptions: { 
    ciphers: 'DES-CBC3-SHA' 
} 

多見於:
https://github.com/nodejs/node/issues/10900#issuecomment-273834289
https://github.com/nodejs/node/issues/9845#issuecomment-7

+0

這救了我的一天,謝謝 – nilesh

相關問題