IE8上的Node.js HTTPS Hello世界服务器

时间:2014-06-10 07:50:42

标签: node.js ssl internet-explorer-8

我正在尝试从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但没有任何效果。

这是一个已知问题吗?

感谢。

1 个答案:

答案 0 :(得分:0)

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

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

您应该点击:

Continue to this website (not recommended). 

将显示你好世界。