I use nginx as proxy server, backend are socketio services. Follow the
[document](http://socket.io/docs/using-multiple-nodes/) , nginx
configuration, ip_hash instruction that indicates the connections will be
sticky.
upstream socketio {
ip_hash;
server server1:3000;
s
Is there any way with nginx that i could put an hold on the subsequent
requests and only proxy the single request for same file in order to
prevent filling up the tmp folder ? tmp is kept on filling up due to the
multiple users are accessing the same file and file is not downloaded yet.
On Sun, Se