将nginx中的流量转发到node.js的正确方法
我想将nginx中某个URL的所有流量转发到node.js。我对 Node.js 还很陌生,我想知道是否应该使用某种 CGI 服务(如 PHP),或者是否应该设置一个 Node.js 服务器(如 nginx -> apache)并转发所有流量通过 nginx 到该服务器,如下所示:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello Node.js\n');
}).listen(8124, "127.0.0.1");
这只是一个需要运行 node.js 脚本的页面。最好的方法是什么?
I want to forward all traffic to a certain URL in nginx to node.js. I'm still new to node.js and I'm wondering if I should be using some kind of CGI service (like PHP) or if I should setup a node.js server (like nginx -> apache) and forward all traffic through nginx to that server like below:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello Node.js\n');
}).listen(8124, "127.0.0.1");
This is only a single page which needs to run a node.js script. What is the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Nginx 反向代理(又名 proxy_pass)不支持 keep-alive。
但可以使用第 3 方模块(Maxim Dounin 的 Upstream Keepalive 模块)为 FastCGI 建立保持活动连接。
顺便说一句,Node.js 在没有任何反向代理的情况下仍然可以稳定运行。
Nginx reverse proxy (aka proxy_pass) doesn't support keep-alive.
But it's possible to establish keep-alive connection for FastCGI using a 3rd party module, Maxim Dounin's Upstream Keepalive module.
By the way, Node.js is yet stable to run without any reverse proxy.