10

我正在尝试使用 Node.js 和 Socket.IO 来促进浏览器和客户端之间的消息传递,遵循指南

但是,我必须在 Apache 后面设置反向代理节点。因此,我使用的是 example.com/nodejs/,而不是 node.com:8080。

这似乎导致 Socket.IO 失去了自我意识。这是我的节点应用程序

var io = require('socket.io').listen(8080);

// this has to be here, otherwise the client tries to 
// send events to example.com/socket.io instead of example.com/nodejs/socket.io
io.set( 'resource', '/nodejs/socket.io' );

io.sockets.on('connection', function (socket) {

  socket.emit('bar', { one: '1'});

  socket.on('foo', function( data )
  {
    console.log( data );
  });

});

这是我的客户文件的样子

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Socket.IO test</title>

  <script src="http://example.com/nodejs/socket.io/socket.io.js"></script>

  <script>

  var socket = io.connect('http://example.com/nodejs/');

  console.log( socket );

  socket.on( 'bar', function (data)
  {
    console.log(data);
    socket.emit( 'foo', {bar:'baz'} );
  });

  socket.emit('foo',{bar:'baz'});

  </script>
</head>
<body>
  <p id="hello">Hello World</p>
</body>
</html>

这里的问题是对http://example.com/nodejs/socket.io/socket.io.js的脚本引用。它不会返回预期的 JavaScript 内容 - 而是返回“欢迎来到 socket.io”,就像我点击http://example.com/nodejs/一样。

知道我怎样才能完成这项工作吗?

4

3 回答 3

9

这最终成为一个多管齐下的解决方案。

首先,在服务器端,我必须像这样设置端点

var io = require('socket.io').listen(8080);

var rootSockets = io.of('/nodejs').on('connection', function(socket)
{
  // stuff
});

var otherSockets = io.of('nodejs/other').on('connection', function(socket)
{
  // stuff
});

然后,在客户端,正确连接看起来像这样

var socket = io.connect(
    'http://example.com/nodejs/'
  , {resource: 'nodejs/socket.io'}
);

// The usage of .of() is important
socket.of('/nodejs').on( 'event', function(){} );
socket.of('/nodejs/other').on( 'event', function(){} );

在此之后,一切都奏效了。请记住,在此服务器上,Apache 在内部将 example.com/nodejs 代理到端口 8080。

于 2012-05-09T14:04:34.147 回答
4

我认为这与您的 apache 代理无关,但与 socket.io 如何处理子目录上的请求有关。在这里查看我的答案。使用 Socket.IO 的 NGINX 配置

基本上,您需要改用此连接语句:

var socket = io.connect('http://example.com', {resource:'nodejs/socket.io'});

于 2012-05-04T05:01:50.297 回答
0

如果有人感兴趣,只有这对我有用。将端口 3000 替换为您的 Nodejs 端口

VirtualHost 中的 Apache 2.2.14

    <IfModule mod_proxy.c>
      <Proxy *>
        Order allow,deny
        allow from all
      </Proxy>
    </IfModule>

    RewriteEngine on

    RewriteCond %{QUERY_STRING} transport=polling
    RewriteRule /(.*)$ http://localhost:3001/$1 [P]

    ProxyRequests off
    ProxyPass /socket.io/ ws://localhost:3001/socket.io/
    ProxyPassReverse /socket.io/ ws://localhost:3001/socket.io/

客户端连接:

  var myIoSocket = io.connect($location.protocol() + '://' + $location.host(), {path: '/socket.io'});

无需在 Node.js 方面进行任何更改。

于 2016-04-21T11:22:05.387 回答