From 6e5032457f74e3eace1dd0ed75afe64f3f6efddf Mon Sep 17 00:00:00 2001 From: ahmedbodi Date: Fri, 27 Dec 2013 14:52:59 +0100 Subject: [PATCH] Fixed Startup Errors --- lib/config_default.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/config_default.py b/lib/config_default.py index 2afde96..935748f 100755 --- a/lib/config_default.py +++ b/lib/config_default.py @@ -44,10 +44,18 @@ THREAD_POOL_SIZE = 300 # Do you want to expose "example" service in server? # Useful for learning the server,you probably want to disable +# Disable the example service ENABLE_EXAMPLE_SERVICE = False + +# Port used for Socket transport. Use 'None' for disabling the transport. +LISTEN_SOCKET_TRANSPORT = 3333 +# Port used for HTTP Poll transport. Use 'None' for disabling the transport LISTEN_HTTP_TRANSPORT = None +# Port used for HTTPS Poll transport LISTEN_HTTPS_TRANSPORT = None +# Port used for WebSocket transport, 'None' for disabling WS LISTEN_WS_TRANSPORT = None +# Port used for secure WebSocket, 'None' for disabling WSS LISTEN_WSS_TRANSPORT = None # ******************** SSL SETTINGS ******************