Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 websocket c++ 代码连接到端口 8888 上的 Nitrous.io 盒(nodes.js 服务器)。
一切正常,只有在一定时间(1分钟)后服务器和客户端之间没有传输时,连接才会关闭。
如果服务器托管在我的另一台服务器而不是 Nitrous.io 盒子上,则相同的客户端运行良好
只是想知道 Nitrous.io websocket 是否有任何限制?
目前在nginx.confNitrous 框中,该值keepalive_timeout 5很可能导致您的 WebSockets 连接超时。
nginx.conf
keepalive_timeout 5
不幸的是,如果没有 root 访问权限,则无法调整此值,但我们(Nitrous 团队)将考虑在更新中增加此值。一旦我们有更新,我会更新这个线程。