如何配置nginx使其与Express兼容?


12

我正在尝试配置nginx,以便它proxy_pass向我的节点应用程序发出请求。关于StackOverflow的问题有很多支持:https ://stackoverflow.com/questions/5009324/node-js-nginx-and-now ,我从那里开始使用config。

(但是由于问题是关于服务器配置的,因此应该在ServerFault上)

这是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;
  }
}

使用普通节点:

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/');

有用! 检查:http//services.stefanow.net/test-http

使用快递:

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/');

它不起作用:( 参见:http : //services.stefanow.net/test-express


我知道发生了什么事。

a)test-express没有运行 在此处输入图片说明

b)text-express正在运行

在此处输入图片说明

(并且我可以在服务器上通过ssh确认它正在通过命令行运行)

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

我尝试按此处所述设置标头:http : //www.nginxtips.com/how-to-setup-nginx-as-proxy-for-nodejs/(仍然无效)

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;

我也尝试用'localhost'替换'127.0.0.1',反之亦然


请指教。我敢肯定,我想念一些明显的细节,我想了解更多。谢谢。


任何登录nginx错误日志?
masegaloeh 2014年

在此设置中-您如何运行快速应用程序?您是否需要像这样的单独流程foreverpm2运行该流程,然后nginx仅对其进行代理?
语法

我记不清了……我记得被接受的答案对我有用。
火星罗伯逊

Answers:


22

您表示已配置服务路径/index.html,但您需要/test-express/index.html。配置express服务/test-express/index.html或使nginx /test-exress从代理请求中剥离。后跟在location和后面加上斜杠一样简单proxy_pass

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

有关详细信息,请参见http://nginx.org/r/proxy_pass


2
问: “我敢肯定我会错过一些明显的细节” 答: “就像添加斜杠一样简单”(谢谢,我确实被困住了)
Mars Robertson
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.