From 7a1aaf362d42abf293ddb682d4fc7d862b85d5d9 Mon Sep 17 00:00:00 2001 From: Quentin Smith Date: Sun, 9 Aug 2009 18:45:21 -0400 Subject: [PATCH] CherryPy config files svn path=/package_branches/invirt-web/cherrypy-rebased/; revision=2662 --- code/dev.conf | 7 +++++++ code/main.conf | 10 ++++++++++ 2 files changed, 17 insertions(+) create mode 100644 code/dev.conf create mode 100644 code/main.conf 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 -- 1.7.9.5