diff options
-rw-r--r-- | cfg/cherrypy.cfg | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cfg/cherrypy.cfg b/cfg/cherrypy.cfg index fe61c73d..51440d6f 100644 --- a/cfg/cherrypy.cfg +++ b/cfg/cherrypy.cfg @@ -4,6 +4,7 @@ log.access_file = "var/access.log" server.environment = "production" engine.autoreload_on = True engine.autoreload_frequency = 5 +engine.timeout_monitor.on = False [/] tools.staticdir.root = os.getcwd() @@ -18,4 +19,4 @@ tools.staticdir.match = "(?i)^.+\.css$" [/images] tools.staticdir.on = True tools.staticdir.dir = "img" -tools.staticdir.match = "(?i)^.+\.png$"
\ No newline at end of file +tools.staticdir.match = "(?i)^.+\.png$" |