aboutsummaryrefslogtreecommitdiff
path: root/cfg/cherrypy.cfg
blob: 7b53c1a2aeef089c42ebb3de0da757bea77ca89f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[global]
log.error_file = "error.log"
log.access_file = "access.log"
server.environment = "production"
engine.autoreload_on = True
engine.autoreload_frequency = 5

[/]
tools.staticdir.root = os.getcwd()
tools.staticdir.on = True
tools.staticdir.dir = "."

[/css]
tools.staticdir.on = True
tools.staticdir.dir = "css"
tools.staticdir.match = "(?i)^.+\.css$"

[/images]
tools.staticdir.on = True
tools.staticdir.dir = "img"
tools.staticdir.match = "(?i)^.+\.png$"
bgstack15