我正在尝试配置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',反之亦然
请指教。我敢肯定,我想念一些明显的细节,我想了解更多。谢谢。
在此设置中-您如何运行快速应用程序?您是否需要像这样的单独流程
—
语法
forever
或pm2
运行该流程,然后nginx
仅对其进行代理?
我记不清了……我记得被接受的答案对我有用。
—
火星罗伯逊
nginx
错误日志?