我正在尝试使用socket.io的node-http-proxy工作,但它总是回到xhr,websockets将无法工作,尽管我正在连接到节点中描述的升级事件 - http-proxy docs。
var httpProxy = require ("http-proxy");
var server = httpProxy.createServer (function (req, res, proxy) {
var buffer = httpProxy.buffer (req);
proxy.proxyRequest (req, res, {
host : "localhost",
port : 8001,
buffer : buffer
});
});
server.listen (80);
server.on('upgrade', function (req, socket, head) {
server.proxy.proxyWebSocketRequest(req, socket, head, { host : "localhost", port : 8001 });
});
该应用程序显然在localhost:8001上运行,如果我允许所有传输方法,它将正常工作,因为它使用xhrs。如果我强制它使用websockets firefox会说
Firefox can't establish a connection to the server at ws://localhost/socket.io/1/websocket/cNp5J80KAWkXqjE6OZOt. @ http://localhost/socket.io/socket.io.js:2371
只使用默认方法
httpProxy.createServer (8001, "localhost").listen (80);
导致同样的错误。
答案 0 :(得分:4)
使用node-http-proxy代理websockets似乎在节点0.10上被破坏了。这是一个尝试修复它的pull请求,但请看我的评论:修复程序也不能完全正常工作。
答案 1 :(得分:2)
我目前正在使用(最新的?v1.0.1)node-http-proxy,我发现在节点v0.10.20上进行调整(见下文)后,Websockets确实可靠。默认情况下,node-http-proxy似乎支持xhr-polling,同时删除websocket连接。
在'examples'中,我添加了'ws'标志为真
var http = require('http'),
httpProxy = require('../../lib/http-proxy');
httpProxy.createServer({
target:'http://somehost.tld:5000',
ws : true //added Websockets Flag TRUE
}).listen(80);//arbitrary port