nodejs14启用tls1.0
时间: 2023-08-07 11:02:08 浏览: 150
在Node.js 14中,默认情况下已禁用TLS 1.0和TLS 1.1。如果需要启用TLS 1.0,可以使用以下代码:
```javascript
const https = require('https');
const options = {
// ...
secureProtocol: 'TLSv1_method'
};
https.createServer(options, (req, res) => {
// ...
});
```
请注意,启用TLS 1.0不是推荐做法,因为TLS 1.0存在安全漏洞。建议使用更安全的TLS版本。
阅读全文