[Django]-Use Django+Redis+Socket.io to build chat room, where to start?

0👍

Start here:

and here:

There are some Django examples as to how to get started. Your tech. stack should allow you to run this without much problems.

1👍

You will probably encounter issues using Socket.io (which will try to use websocket) with Nginx. Nginx 1.0 does not support proxying of HTTP/1.1. You can use tcp_proxy to work around it. You might be able to find some forks for Nginx 1.1 that have websocket support though.

Check out this and this.

👤Gary L

Leave a comment