Socket.io 可以监听多个端口吗?
socket.io 是否可以在一台服务器上监听多个端口?
背景 - 我需要满足两个问题:
1.一些合作&其他封闭网络会阻止所有不使用端口 80 的流量。
2.某些防病毒软件会阻止端口 80 上的 Websocket 流量。端口 4000 是最安全的端口。
因此,我需要我的节点服务器能够同时使用端口 80 和 4000。有人遇到过类似的问题吗?你是怎么解决的?
谢谢。
Is it possible for socket.io to listen on multiple ports in one server?
Background - I need to satisfy two problems:
1.Some cooperate & other closed networks block all traffic which does not use port 80.
2.Some anti viruses block websocket traffic on port 80. Port 4000 is the safest port to use.
I therefore need to my node server to be able to use port 80 and 4000 simultaneously. Has anyone experienced similar problems? How did you solve it?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的进程正在侦听端口 4000,据我所知,您可以使用 iptables 在内部转发端口 80 的请求。
/edit 以错误的方式获取端口。
Suppose your process is listening on port 4000, it's my understanding you can use iptables to internally forward requests for port 80.
/edit got the ports the wrong way around.