如何使用 tcp_proxy_module 将请求从 nginx 转发到 Node.js?

发布于 2024-11-29 08:43:24 字数 295 浏览 0 评论 0原文

现在,我已经使用 nginx_tcp_proxy_module 修补了 nginx,并且它正在运行在端口 8080 上正常。

如何将客户端连接到 nignx 的端口 80,而不是 Node.js, 让 nginx 将请求转发给 Node.js?

Now, I had patched nginx with the nginx_tcp_proxy_module, and it is running OK on port 8080.

How do I connect the clients to port 80 of nignx, not port 8080 of Node.js,
so that having the nginx forward the request to Node.js?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

栖迟 2024-12-06 08:43:24

只需将 8080 更改为 80 即可。但是同一端口上的 TCP 和 HTTP 不可能

替代解决方案:

  • 在端口 80 上使用 HAProxy
  • 设置 nginx 以侦听端口 81
  • 在端口 8080 上运行 Node.js 应用程序
  • 配置 HAProxy
    • 主机:your.nodejs.socketio.com转发到127.0.0.1:8080
    • 将其他所有内容转发到 127.0.0.1:81

如果您沿着这条路线走,您可能会希望保留客户端 IP :

  • 配置HAproxy
  • 使用nginx 中的 RealIP 模块
  • 在 socket.io 中使用 X-Forwarded-For

    socketio.handshakeData = 函数(数据){
        var d = socketio.Manager.prototype.handshakeData(data);
        d.ip = data.request.headers['x-forwarded-for'] ||数据.请求.连接.remoteAddress;
        返回d;
    };
    

Just change 8080 to 80. But TCP and HTTP on the same port is not possible.

Aleternative solution:

  • Use HAProxy on port 80
  • Set up nginx to listen on port 81
  • Run your node.js app on port 8080
  • Configure HAProxy to
    • forward Host: your.nodejs.socketio.com to 127.0.0.1:8080
    • forward everything else to 127.0.0.1:81

If you go down this route you will probably want to preserve client IPs:

  • Configure HAproxy
  • Use RealIP module in nginx
  • Use X-Forwarded-For in socket.io

    socketio.handshakeData = function(data) {
        var d = socketio.Manager.prototype.handshakeData(data);
        d.ip = data.request.headers['x-forwarded-for'] || data.request.connection.remoteAddress;
        return d;
    };
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文