gpt4 book ai didi

node.js https 示例,错误,连接到 localhost 时出现未知 SSL 协议(protocol)错误

转载 作者:IT老高 更新时间:2023-10-28 23:08:55 30 4
gpt4 key购买 nike

我使用这些链接中的简单示例:

a link [a 如何在 Node.js 中创建 HTTPS 服务器?]

a link [a 如何创建 https 服务器? docs.nodejitsu.com]

但我得到类似的错误

curl: (35) 连接到 localhost:-9838 时出现未知 SSL 协议(protocol)错误

为什么?

最佳答案

我使用错误的方式创建证书。

这个是错的:

openssl genrsa -out key.pem
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem

这是创建可以使用的证书的方法:

openssl genrsa -out client-key.pem 2048
openssl req -new -key client-key.pem -out client.csr
openssl x509 -req -in client.csr -signkey client-key.pem -out client-cert.pem

关于node.js https 示例,错误,连接到 localhost 时出现未知 SSL 协议(protocol)错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34835859/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com