Proxy do tráfego do websocket do nginx 1.3.13 para o socket.io (sem SSL)

5

A partir de 2 dias atrás, o nginx começou a suportar conexões de websocket, portanto, eu estava tentando fazer com que meu aplicativo nginx-nodejs-socket.io funcionasse sem o HAproxy ect (ainda que não tenha muita sorte).

O que eu quero exatamente alcançar é nginx enviar apenas solicitações de conexão websocket para um servidor suportado, ou servidor websocket, socket.io para ser mais exato, enquanto que ao mesmo tempo o nginx estará servindo arquivos php e todo o conteúdo estático incluindo arquivos html.Eu não quero expressar para servir conteúdo estático a todos (se isso for possível).

Aqui está o meu nginx.conf

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;
events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    gzip  on;

    upstream backend {
        server 127.0.0.1:8080;
    }

    server {
        listen       80;
        server_name  localhost;

        charset UTF-8;

        #access_log  logs/host.access.log  main;

        location / {
            root   /website/html_public;
            index  index.php index.html index.htm;
        }       
        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   /website/html_public;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        location ~ \.php$ {
        root           /website/html_public;
        try_files      $uri =404;
        fastcgi_pass   unix:/tmp/php5-fpm.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        location ~ /\.ht {
            deny  all;
        }

         location /connection {
         proxy_pass http://backend;  
         proxy_http_version 1.1;
         proxy_set_header Upgrade $http_upgrade;
         proxy_set_header Connection "upgrade";
             }
       }

    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   /website/html_public;
    #        index  index.php index.html index.htm;
    #    }
    #}
}

E aqui está o meu arquivo server.js no nó

var express = require('express');
var app     = express();
var port    = 8080;

/* HTTP Server*/

server = require('http').createServer(app);
server.listen(port);
app.use(express.logger(':remote-addr - :method :url HTTP/:http-version :status :res[content-length] - :response-time ms'));
app.use(express.static(__dirname + '/html_public'));
app.use(express.favicon());

app.set('view engine', 'jade');
app.set('view options', { layout: false });
app.set('views', __dirname + '/views');

app.get('/', function(req, res){
    res.render('index.html');

});

/*
* Web Sockets
*/
io   = require('socket.io').listen(server),
io.configure('production', function(){
io.enable('browser client etag');
io.set('log level', 1);
io.set('transports', [ 'websocket', 'htmlfile', 'xhr-polling', 'jsonp-polling' ]);
});


console.log('Chat Server started with Node '+ process.version +', platform '+ process.platform + 'to port %d',port); 

Do meu cliente, tente se conectar assim:

socket = new io.connect('http://localhost/connection');

O problema é que quando tento me conectar normalmente, digitando localhost no navegador chrome, vejo no console:

GET http://localhost/socket.io/socket.io.js 404 (Not Found)

E também quando digito no navegador: http://localhost/connection recebo " Não é possível GET / connection " que está me dizendo que o nginx não está fazendo proxysing de websockets normalmente com minha configuração atual.

    
por Skeptic 21.02.2013 / 18:46

2 respostas

4

OK websockets através do nginx trabalhando aqui "

Mudei a minha secção de localização para:

    location / {
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_set_header X-NginX-Proxy true;

        proxy_pass http://backend;
        proxy_redirect off;

        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
    }

Agora, ele faz conexões de soquete da web muito rápidas. Yipee!

    
por 01.03.2013 / 11:49
2

O socket.io é um pouco sorrateiro, pois serve o script do cliente socket.io.js automaticamente de algum lugar no diretório node_modules.

Então, o que você precisa fazer é dizer ao nginx para passar solicitações para esse local para o node.js também. No meu nginx.conf eu tenho:

    location /chat {
        proxy_pass http://backend;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
    }

    location /socket.io {
        proxy_pass http://backend;
    }

No entanto, isso só me faz tão longe quanto então a conexão websocket falha com um erro 502 "bad gateway".

Depois disso, o socket.io retorna ao xhr-polling, que é muito, muito lento.

    
por 01.03.2013 / 11:36