我正在尝试使用在nginx中代理的连接运行nodejs的nginx和nodejs。我遇到的问题是我目前不在root(/)下运行nodejs但在/ data下运行nginx应该正常处理静态请求。 nodejs不应该知道它在/ data下,但它似乎是必需的。
换句话说。我希望nodejs“思考”它在/运行。这可能吗?
nginx config:
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;
}
}
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');
});
};
答案 0 :(得分:3)
我认为这个解决方案可能会更好(如果你使用像Express或类似的东西使用“中间件”逻辑):
添加中间件功能以更改网址
<强> rewriter.js 强>
module.exports = function temp_rewrite() {
return function (req, res, next) {
req.url = '/data' + req.url;
next();
}
}
在您的Express应用中,请执行以下操作:
<强>的app.config 强>
// 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')
});
答案 1 :(得分:1)
我通常这样做:
nginx config:
upstream app_node {
server 127.0.0.1:3000;
}
server {
...
location /data/ {
...
proxy_pass http://app_node
rewrite ^/data/(.*)? /$1 break;
}
}
node.js app:
app.get('/something', function(req, res, next) {
...
});
然后我可以从外部世界发出http://my-host-name/data/something?someKey=someValue
之类的请求,nginx会将其传递给node.js应用,该应用只会将其视为/something?someKey=someValue
(因为网址已被重写) )。
我知道这不是唯一的方法,但是在更好的方法中,因为我始终尊重&#34; things that do one thing and do it well&#34;的哲学。在这里,Nginx擅长重写URL,而Node.js擅长处理请求本身。
答案 2 :(得分:0)
临时解决方案: 对我来说并不理想,但它现在必须到期,因为我至少可以配置它。我正在使用以下方式启动节点服务器:
node app2.js /data
处理根节点的代码:
exports.routes = function(app) {
var me = this;
// get the root path
me.proxyRootPath = process.argv[2];
// using the proxyRootPath to answer to the correct request
app.get(me.proxyRootPath, function(req, res, params) {
res.writeHead(200, { 'Content-type': 'text/plain' });
res.end('app.get /data');
});
// using the proxyRootPath to answer to the correct request
app.get(me.proxyRootPath + '/test', function(req, res, params) {
res.writeHead(200, { 'Content-type': 'text/plain' });
res.end('app.get /data/test');
});
};
答案 3 :(得分:0)
解决方案:
编写应用程序以在命令行中查找目录。运行应用程序时,在命令行上传递目录。
编写应用程序以查找特定环境变量中的目录。运行应用程序时首先设置环境变量。
编写应用程序以假定其当前目录是目标目录。运行应用程序时首先转到目录。
编写应用程序以升级目录树以查找已知文件(例如,升级目录以查找./app2.js
,然后找到该文件的目录是目标目录)