CherryPy config files
authorQuentin Smith <quentin@mit.edu>
Sun, 9 Aug 2009 22:45:21 +0000 (18:45 -0400)
committerQuentin Smith <quentin@mit.edu>
Sun, 9 Aug 2009 22:45:21 +0000 (18:45 -0400)
svn path=/package_branches/invirt-web/cherrypy-rebased/; revision=2662

code/dev.conf [new file with mode: 0644]
code/main.conf [new file with mode: 0644]

diff --git a/code/dev.conf b/code/dev.conf
new file mode 100644 (file)
index 0000000..76d8c39
--- /dev/null
@@ -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 (file)
index 0000000..2130697
--- /dev/null
@@ -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