gpt4 book ai didi

node.js - node.js 上的服务器 HTTPS 不起作用

转载 作者:搜寻专家 更新时间:2023-10-31 22:33:38 25 4
gpt4 key购买 nike

我正在尝试创建一个 HTTPS 服务器。我按照以下说明使用 Cygwin64 生成了 privatekey.pem 和 certicate.pem:

openssl genrsa -out privatekey.pem 1024
openssl req -new -key privatekey.pem -out certrequest.csr
openssl x509 -req -in certrequest.csr -signkey privatekey.pem -out certificate.pem

虽然我的服务器代码是这样的:

var https = require('https');
var fs = require('fs');

var options = {
key: fs.readFileSync('privatekey.pem'),
cert: fs.readFileSync('certificate.pem')
};

https.createServer(options, function (req, res) {
res.writeHead(200);
res.end("hello world\n");
}).listen(8001);

当我尝试连接到地址 https://localhost:8001 时,网页不可用。谁能帮帮我?

最佳答案

您的代码绝对可以正常工作。我已经在我的本地主机上测试过了。我认为问题在于您的 key 生成。尝试再次生成 key 并运行您的服务器。我希望它会起作用。

注意:您生成的证书只能在本地主机上使用。所以不要在任何在线 IDE(如 codio.com、koding.com、cloud9.com 等)中尝试此操作。如果您想这样做,您必须从 Verysign 等公司购买 SSL 证书。

如果不行,试试下面的代码。

第 1 步: 打开您的终端并运行以下命令以生成私钥文件 'key.pem'

$ openssl genrsa 1024 > key.pem

第 2 步:现在运行以下命令生成 SSL 证书文件 'key-cert.pem'

$ openssl req -x509 -new -key key.pem > key-cert.pem

第 3 步:现在用以下内容编写 'server.js' 文件。

var https = require('https');
var fs = require('fs');

var options = {
key: fs.readFileSync('key.pem'),
cert: fs.readFileSync('key-cert.pem')
};

https.createServer(options, function (req, res) {
res.writeHead(200);
res.end("hello world\n");
}).listen(8001);

第 4 步:现在使用以下命令运行服务器文件。

$ node server.js

第 5 步:现在在浏览器中点击 url 'https://localhost:8001' 并接受证书,您将看到“hello world”消息在页面上。

关于node.js - node.js 上的服务器 HTTPS 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24534468/

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