如何使用 tcp_proxy_module 将请求从 nginx 转发到 Node.js?
现在,我已经使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将 8080 更改为 80 即可。但是同一端口上的 TCP 和 HTTP 不可能。
替代解决方案:
主机:your.nodejs.socketio.com
转发到127.0.0.1:8080如果您沿着这条路线走,您可能会希望保留客户端 IP :
在 socket.io 中使用 X-Forwarded-For
Just change 8080 to 80. But TCP and HTTP on the same port is not possible.
Aleternative solution:
Host: your.nodejs.socketio.com
to 127.0.0.1:8080If you go down this route you will probably want to preserve client IPs:
Use X-Forwarded-For in socket.io