diff --git a/INSTALL b/INSTALL index 8e7341a..321fcb6 100644 --- a/INSTALL +++ b/INSTALL @@ -18,7 +18,7 @@ Run the server in development mode: Connect to the following URL in a web browser running on the same machine: - http://localhost:8080/ + http://localhost:8081/ You can run unit tests by running: diff --git a/config/Common.py b/config/Common.py index 1dde57c..ab032aa 100644 --- a/config/Common.py +++ b/config/Common.py @@ -3,7 +3,7 @@ import cherrypy settings = { "global": { - "server.socket_port": 8080, + "server.socket_port": 8081, "server.environment": "production", "session_filter.on": True, "session_filter.storage_type": "file", diff --git a/config/Production.py b/config/Production.py index 0fa5348..009dda0 100644 --- a/config/Production.py +++ b/config/Production.py @@ -10,5 +10,6 @@ settings = { "server.log_to_screen": False, "server.log_file": "luminotes.log", "server.log_access_file": "luminotes.log", + "server.log_tracebacks": True, }, }