节点代理意外关闭连接

时间:2013-08-13 11:42:52

标签: python apache node.js proxy

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

0 个答案:

没有答案