socket.io net :: ERR_SSL_PROTOCOL_ERROR永远

时间:2014-10-13 14:14:12

标签: node.js socket.io forever

我正在使用Node.js,Socket.io和forever module。

脚本运行好几天,直到随机开始抛出此错误:

net::ERR_SSL_PROTOCOL_ERROR

这是我使用的代码:

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

var options = {
    key:    fs.readFileSync('cert/www.domain.com.key'),
    cert:   fs.readFileSync('cert/www.domain.com.crt')
};
var app = https.createServer(options);
io = require('socket.io').listen(app);
app.listen(8080, "0.0.0.0");

我该如何避免这种情况?

0 个答案:

没有答案