如何配置 nginx 以使其与 Express 一起工作?

如何配置 nginx 以使其与 Express 一起工作?

我正在尝试配置 nginx,以便它proxy_pass向我的节点应用程序发出请求。StackOverflow 上的问题获得了很多赞同:https://stackoverflow.com/questions/5009324/node-js-nginx-and-now我正在使用那里的配置。

(但由于问题是关于服务器配置的,所以它应该在 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”,反之亦然


请指教。我确信我遗漏了一些明显的细节,我想了解更多。谢谢。

答案1

您已将 express 配置为服务路径/index.html,但您需要/test-express/index.html。要么将 express 配置为服务/test-express/index.html,要么让 nginx 从代理请求中剥离。后者很简单,只需在和 后面/test-exress添加斜杠即可。locationproxy_pass

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

http://nginx.org/r/proxy_pass了解详情。

相关内容