diff options
author | cedricbonhomme <devnull@localhost> | 2011-10-25 09:50:33 +0200 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2011-10-25 09:50:33 +0200 |
commit | f061d1f0cf28a8fad5249376ff081d6e4f8126c9 (patch) | |
tree | 4459d066ad0bdbf4a8772b72d38f788b40d751ef /cfg/cherrypy.cfg | |
parent | Updated .hgignore. Added a function to export the articles database to pdf fi... (diff) | |
download | newspipe-f061d1f0cf28a8fad5249376ff081d6e4f8126c9.tar.gz newspipe-f061d1f0cf28a8fad5249376ff081d6e4f8126c9.tar.bz2 newspipe-f061d1f0cf28a8fad5249376ff081d6e4f8126c9.zip |
Updated CherryPy configuration: no timeout (the export of the database to PDF files can take a while).
Diffstat (limited to 'cfg/cherrypy.cfg')
-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$" |