Como configurar o nginx para funcionar com o Express?

9

Estou tentando configurar o nginx para que proxy_pass solicite para meus aplicativos de nó. A pergunta sobre o StackOverflow tem muitos upvotes: link e estou usando a configuração de lá.

(mas como a questão é sobre a configuração do servidor, ela deveria estar no ServerFault)

Aqui está a configuração do nginx:

server {
  listen 80;
  listen [::]:80;

  root /var/www/services.stefanow.net/public_html;
  index index.html index.htm;
  server_name services.stefanow.net;

  location / {
    try_files $uri $uri/ =404;
  }

  location /test-express {
    proxy_pass    http://127.0.0.1:3002;
  }    

  location /test-http {
    proxy_pass    http://127.0.0.1:3003;
  }
}

Usando o nó simples:

var http = require('http');

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
}).listen(3003, '127.0.0.1');

console.log('Server running at http://127.0.0.1:3003/');

Funciona! Verifique: link

Usando expresso:

var express = require('express');
var app = express(); //

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

app.get('/index.html', function(req, res) {
  res.send("blah blah index.html");
});

app.listen(3002, "127.0.0.1");
console.log('Server running at http://127.0.0.1:3002/');

Não funciona: ( Veja: link

Eu sei que algo está acontecendo.

a) test-express NÃO está em execução

b)otextoexpressoestáemexecução

(e posso confirmar que está sendo executado via linha de comando enquanto o ssh no servidor)

root@stefanow:~# service nginx restart
 * Restarting nginx nginx                                                                                  [ OK ]

root@stefanow:~# curl localhost:3002
Moved Temporarily. Redirecting to /index.html

root@stefanow:~# curl localhost:3002/index.html
blah blah index.html

Tentei definir os cabeçalhos conforme descrito aqui: link ( ainda não funciona)

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;

Eu também tentei substituir '127.0.0.1' por 'localhost' e vice-versa

Por favor avise. Tenho certeza que sinto falta de alguns detalhes óbvios e gostaria de aprender mais. Obrigado.

    
por Michal Stefanow 03.06.2014 / 01:58

1 resposta

19

Você expressa configurado para veicular o caminho /index.html , mas você precisa de /test-express/index.html . Configure o expresso para servir /test-express/index.html ou faça o nginx para remover /test-exress do pedido com proxy. O último é tão simples quanto adicionar barras à direita para location e proxy_pass .

location /test-express/ {
  proxy_pass    http://127.0.0.1:3002/;
}

Veja link para detalhes.

    
por 03.06.2014 / 08:14