witten
/
luminotes
Archived
1
0
Fork 0

Moving default port to 8081 so as not to conflict with Coderific.

This commit is contained in:
Dan Helfman 2007-08-01 20:24:46 +00:00
parent 8ba824ef4f
commit 3d3c4a6ad4
3 changed files with 3 additions and 2 deletions

View File

@ -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:

View File

@ -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",

View File

@ -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,
},
}