I'm developing Django Web Services. I'm trying to avail PUSH using WebSocket (ws://). Till now there is no support for ws in nGINX. So I'm using Tornado Server to host WebSocket. Many (almost all) Tutorials have solution using Socket.io. I dont want to use Socket.io coz its not pure WebSocket (as per me). I just want to use ws and not Socket.io (Node.js).
Well, my front-end server should be nGINX to serve HTTP Requests. ws:// Requests should be passed to Tornado Server (or any other Server if supported)