FreedomBox/cherrypy.config
2011-03-09 11:34:33 -05:00

20 lines
454 B
Plaintext

[global]
server.socket_host = '0.0.0.0'
server.socket_port = 8000
server.thread_pool = 10
tools.staticdir.root = "."
tools.sessions.on = True
tools.auth.on = True
tools.sessions.storage_type = "file"
tools.sessions.storage_path = "./data/cherrypy_sessions"
tools.sessions.timeout = 90
[/static]
tools.staticdir.on = True
tools.staticdir.dir = "static"
[/favicon.ico]
tools.staticfile.on = True
tools.staticfile.filename = "./static/theme/favicon.ico"