From 3d3c4a6ad46bc79f87501a487127400092ac7161 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Wed, 1 Aug 2007 20:24:46 +0000 Subject: [PATCH] Moving default port to 8081 so as not to conflict with Coderific. --- INSTALL | 2 +- config/Common.py | 2 +- config/Production.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) 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, }, }