From 63ddf1cbaef11a2df7ee853c778117f05cc79e90 Mon Sep 17 00:00:00 2001 From: Griatch Date: Tue, 21 Apr 2015 20:14:29 +0200 Subject: [PATCH] Update settings_default.py Added a more correct description to the WEBSOCKET_CLIENT_URL setting to emphasize it is entered without a port number. --- evennia/settings_default.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/settings_default.py b/evennia/settings_default.py index 0ac2610a4f..fe6abf40e7 100644 --- a/evennia/settings_default.py +++ b/evennia/settings_default.py @@ -71,8 +71,8 @@ WEBSOCKET_CLIENT_ENABLED = True WEBSOCKET_CLIENT_PORT = 8001 # Interface addresses to listen to. If 0.0.0.0, listen to all. Use :: for IPv6. WEBSOCKET_CLIENT_INTERFACE = '0.0.0.0' -# Actual URL for webclient component to reach the websocket. The first -# port number in the WEBSOCKET_PORTS list will be automatically appended. +# Actual URL for webclient component to reach the websocket. +# The WEBSOCKET_CLIENT_PORT will be automatically appended to this URL. WEBSOCKET_CLIENT_URL = "ws://localhost" # Activate SSH protocol communication (SecureShell) SSH_ENABLED = False