在nginx下运行nodejs

Ask*_*ken 13 nginx node.js

我正在尝试使用在nginx中代理的连接运行nodejs的nginx和nodejs.我遇到的问题是我目前不在root(/)下运行nodejs但在/ data下运行nginx应该正常处理静态请求.nodejs不应该知道它在/ data下,但它似乎是必需的.

换一种说法.我希望nodejs"思考"它在/运行.那可能吗?

nginx配置:

upstream app_node {
    server 127.0.0.1:3000;
}

server {
...

     location /data {
            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://app_node/data;
            proxy_redirect off;
    }
}
Run Code Online (Sandbox Code Playgroud)

nodejs代码:

exports.routes = function(app) {
    // I don't want "data" here. My nodejs app should be able to run under
    // any folder
    app.get('/data', function(req, res, params) {
            res.writeHead(200, { 'Content-type': 'text/plain' });
            res.end('app.get /data');
    });
    // I don't want "data" here either
    app.get('/data/test', function(req, res, params) {
            res.writeHead(200, { 'Content-type': 'text/plain' });
            res.end('app.get /data/test');
    });
};
Run Code Online (Sandbox Code Playgroud)

ale*_*lex 3

我认为这个解决方案可能更好(如果您使用 Express 之类的东西或使用“中间件”逻辑的类似东西):

添加一个中间件函数来更改 url,如下所示

重写器.js

module.exports = function temp_rewrite() {
  return function (req, res, next) {
    req.url = '/data' + req.url;
    next();
  }
}
Run Code Online (Sandbox Code Playgroud)

在你的 Express 应用程序中这样做:

应用程序配置

// your configuration
app.configure(function(){
  ...
  app.use(require('./rewriter.js').temp_rewrite());
  ...
});

// here are the routes
// notice you don't need to write '/data' in front anymore all the time

app.get('/', function (req, res) {
  res.send('This is actually site.com/data/');
});

app.get('/example', function (req, res) {
  res.send('This is actually site.com/data/example')
});
Run Code Online (Sandbox Code Playgroud)