Hacker News new | ask | show | jobs
by mc 4860 days ago
What's the difference between this new support and the nginx-push-stream module? https://github.com/wandenberg/nginx-push-stream-module
1 comments

nginx-push-stream handles the websocket connections itself and exposes a pubsub channel, so that your backend app doesn't have to worry about holding connections open. Whereas I believe the new websocket functionality allows you to proxy to websocket-enabled backend apps.
Good comparison. Thanks.