wandenberg / nginx-push-stream-module

A pure stream http push technology for your Nginx setup. Comet made easy and really scalable.
Other
2.22k stars 295 forks source link

several browser windows #168

Closed temirfe closed 9 years ago

temirfe commented 9 years ago

I have set up long-polling chat like in Gmail and it's working well. But when I open two (or more) browser tabs logged in as same user (listener) then only one of them gets the message from publisher. How can I fix it?

wandenberg commented 9 years ago

How are you doing the channels subscribe? Probably you are reaching the limit of connections to the same server. Generally the browsers limit this value to 4 simultaneous connections. You can try to register different domains to the same server just to check is this is the problem.

temirfe commented 9 years ago

The problem was in my Firefox. It's working well in all other browsers and in Firefox on other PC. I think some configuration on my FF is causing the problem. Thanks for this great module, sir.