aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/templates/vhost_catalyst_app.conf
diff options
context:
space:
mode:
Diffstat (limited to 'modules/apache/templates/vhost_catalyst_app.conf')
-rw-r--r--modules/apache/templates/vhost_catalyst_app.conf13
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/apache/templates/vhost_catalyst_app.conf b/modules/apache/templates/vhost_catalyst_app.conf
new file mode 100644
index 00000000..29ca7c74
--- /dev/null
+++ b/modules/apache/templates/vhost_catalyst_app.conf
@@ -0,0 +1,13 @@
+<VirtualHost *:80>
+ ServerName <%= vhost %>
+ # Serve static content directly
+ DocumentRoot /dev/null
+
+ Alias <%= script %>/ /
+ FastCgiServer <%= script %> -processes <%= process %> -idle-timeout 30
+
+ <Location />
+ Allow from all
+ </Location>
+</VirtualHost>
+