Fixed so multiple webserver interfaces don't kill the websocket client connection. Cleaned up some comments in settings.py.

This commit is contained in:
Griatch 2014-08-23 00:07:47 +02:00
parent ffa90e1a03
commit 19d6d4ff9e
2 changed files with 7 additions and 3 deletions

View file

@ -85,7 +85,9 @@ SSL_ENABLED = False
SSL_PORTS = [4001]
# Interface addresses to listen to. If 0.0.0.0, listen to all. Use :: for IPv6.
SSL_INTERFACES = ['0.0.0.0']
# Activate Websocket support
# Activate custom websocket support. This is unrelated to the websocket client!
# This is intended to be used by optional third-party connections/applications
# or clients.
WEBSOCKET_ENABLED = False
# Ports to use for Websockets
WEBSOCKET_PORTS = [8021]