gpt4 book ai didi

IE8 上的 Node.js HTTPS Hello world 服务器

转载 作者:太空宇宙 更新时间:2023-11-03 14:59:43 24 4
gpt4 key购买 nike

我正在尝试从 Node.js documentation 运行这个示例 HTTPS 服务器.

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

var options = {
key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')
};

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

https://localhost:8000/ 适用于 Firefox 29,但不适用于 IE8。 “Internet Explorer无法显示该网页。”

我也试过this support page来自微软,但没有任何效果。

这是一个已知问题吗?

谢谢。

最佳答案

自制的证书可能有问题。我的 IE8 写道:

There is a problem with this website's security certificate.

你应该点击:

Continue to this website (not recommended). 

然后会显示 hello world。

关于IE8 上的 Node.js HTTPS Hello world 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24135645/

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