-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathproduction.conf
More file actions
28 lines (24 loc) · 820 Bytes
/
production.conf
File metadata and controls
28 lines (24 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[global]
log.error_file : os.path.join(os.getcwd(), 'checkMeIn.log')
log.access_file : ''
log.screen : False
server.socket_host : '127.0.0.1'
server.socket_port : 8447
database.path : 'data/'
database.name : 'checkMeIn.db'
[/]
tools.staticdir.root : os.path.abspath(os.getcwd())
tools.sessions.on : True
tools.sessions.storage_class : cherrypy.lib.sessions.FileSession
tools.sessions.storage_path : os.path.join(os.getcwd(), 'sessions')
tools.sessions.timeout : 60 * 24 * 365
tools.sessions.httponly : True
[/favicon.ico]
tools.staticfile.on : True
tools.staticfile.filename : os.path.join(os.getcwd(), 'static/favicon.ico')
[/robots.txt]
tools.staticfile.on : True
tools.staticfile.filename : os.path.join(os.getcwd(), 'static/robots.txt')
[/static]
tools.staticdir.on : True
tools.staticdir.dir : 'static'