From: Quentin Smith Date: Sun, 9 Aug 2009 22:45:21 +0000 (-0400) Subject: CherryPy config files X-Git-Tag: 0.1.0^2~73 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/commitdiff_plain/7a1aaf362d42abf293ddb682d4fc7d862b85d5d9?ds=sidebyside CherryPy config files svn path=/package_branches/invirt-web/cherrypy-rebased/; revision=2662 --- diff --git a/code/dev.conf b/code/dev.conf new file mode 100644 index 0000000..76d8c39 --- /dev/null +++ b/code/dev.conf @@ -0,0 +1,7 @@ +# For the testing site. + +[global] +server.socket_port = 8080 +log.access_file = "/tmp/invirt-web-access_log.dev" +log.error_file = "/tmp/invirt-web-error_log.dev" +tools.mako.module_directory = "/tmp/invirt-web-templatecache.dev" diff --git a/code/main.conf b/code/main.conf new file mode 100644 index 0000000..2130697 --- /dev/null +++ b/code/main.conf @@ -0,0 +1,10 @@ +# This file is used when the web interface is loaded as a FastCGI +[global] +#auto_reload doesn't work with FastCGI +engine.auto_reload = False +tools.mako.module_directory = "/tmp/invirt-web-templatecache" + +engine.SIGHUP = None +engine.SIGTERM = None + +log.screen = False