我的系统使用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提出请求时,如果工作正常。 对于节点重启的第一个请求,它也可以正常工作。