change to relative paths

This commit is contained in:
James Vasile 2011-03-09 11:34:33 -05:00
parent 00a310a209
commit de0bf3000d

View File

@ -2,11 +2,11 @@
server.socket_host = '0.0.0.0'
server.socket_port = 8000
server.thread_pool = 10
tools.staticdir.root = "/home/vasile/src/plinth"
tools.staticdir.root = "."
tools.sessions.on = True
tools.auth.on = True
tools.sessions.storage_type = "file"
tools.sessions.storage_path = "/home/vasile/src/plinth/data/cherrypy_sessions"
tools.sessions.storage_path = "./data/cherrypy_sessions"
tools.sessions.timeout = 90
[/static]
@ -15,5 +15,5 @@ tools.staticdir.dir = "static"
[/favicon.ico]
tools.staticfile.on = True
tools.staticfile.filename = "/home/vasile/src/plinth/static/theme/favicon.ico"
tools.staticfile.filename = "./static/theme/favicon.ico"