将nginx中的流量转发到node.js的正确方法

发布于 2024-10-30 01:43:02 字数 401 浏览 2 评论 0原文

我想将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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昨迟人 2024-11-06 01:43:02

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文