我正在嘗試使用node-http-proxy將流量引導到端口3000(我的rails服務器)和端口8888(我的nodejs socket.io服務器)。我使用節點HTTP代理充當反向代理坐在端口80讓Node-http-proxy與socket.io一起工作?
var proxy = new httpProxy.HttpProxy({
target: {
host: 'localhost',
port: CONFIG.RAILS_PORT,
}
});
var server = http.createServer(function(req, res) {
//
// Proxy normal HTTP requests
//
proxy.proxyRequest(req, res);
});
server.on('upgrade', function(req, socket, head) {
//
// Proxy websocket request to another port
//
console.log('inside upgrade');
proxy.proxyWebSocketRequest(req, socket, head, {
host: 'localhost',
port: CONFIG.NODEJS_PORT
});
});
server.listen(80);
var WrappedServer = require('./wrappedServer').WrappedServer
var singleton = new WrappedServer();
singleton.run(CONFIG.NODEJS_PORT, {'log level': 2});
(我幾乎只是自述從節點-HTTP代理複製),這是我的客戶.js在瀏覽器上。
var socket = io.connect('http://localhost', {'sync disconnect on unload': false});
不知何故,io.connect無法連接到nodejs服務器。我從io.connect獲得此響應:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Action Controller: Exception caught</title>
<style>
body { background-color: #fff; color: #333; }
body, p, ol, ul, td {
font-family: helvetica, verdana, arial, sans-serif;
font-size: 13px;
line-height: 18px;
}
pre {
background-color: #eee;
padding: 10px;
font-size: 11px;
}
a { color: #000; }
a:visited { color: #666; }
a:hover { color: #fff; background-color:#000; }
</style>
</head>
<body>
<h1>Routing Error</h1>
<p><pre>No route matches [GET] "/socket.io/1"</pre></p>
</body>
</html>
任何想法如何讓io.connect連接到nodejs服務器?我不知道如何觸發io.connect到達server.upgrade集團。
謝謝 !
我有幾乎相同的問題。你有沒有找到這個解決方法? – Luc 2012-05-29 13:38:32