Replies: 1 comment 6 replies
-
Lighttpd is not a supported web server. I really don't know if it can be configured to work with Socket.IO. For starters, I don't think FastCGI or flup support WebSocket, so in the best scenario you'll be limited to use long-polling only. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am currently using flup to deploy my Flask app on lighttpd. The code is as follows:
Once I introduced flask_socketio,
socketio = SocketIO(app)
I can no longer use the same model.I tried the naive approach as follows
but of course that didn't work. How do I change my fcgi wrapper to make it work with flask_socketio?
any advice is really appreciated!
Beta Was this translation helpful? Give feedback.
All reactions