我的系统使用 apache 和 mod_wsgi 运行 python 代码。
节点代理到 apache 的连接。
在 python 脚本中,我提供一个文件以响应 http get。
请求连接时意外中断。
节点代码:
var server = https.createServer(httpsOptions,function (req, res) {
var result=req.url.match(/^\/(.*?)(\/.*?)$/);
if (!(result&&result[1]=='socket.io')) {
return proxy.proxyRequest(req, res);
}
});
当我向 apache 发出请求时,如果工作正常。它也适用于节点重启后的第一个请求。