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.conf30
1 files changed, 0 insertions, 30 deletions
diff --git a/modules/apache/templates/vhost_catalyst_app.conf b/modules/apache/templates/vhost_catalyst_app.conf
deleted file mode 100644
index 57867fc4..00000000
--- a/modules/apache/templates/vhost_catalyst_app.conf
+++ /dev/null
@@ -1,30 +0,0 @@
-<% if use_ssl then
- port = 443
-else
- port = 80
-end
-%>
-
-<VirtualHost *:<%= port %>>
-<% if use_ssl then %>
- SSLEngine on
- #TODO deploy SNI later
- SSLCertificateFile /etc/ssl/apache/apache.pem
- SSLCertificateKeyFile /etc/ssl/apache/apache.pem
-<% end %>
- ServerName <%= name %>
- # Serve static content directly
- DocumentRoot /dev/null
-# header
-
-<% if location then %>
- Alias /static <%= location %>/root/static
-<% end %>
- Alias / <%= script %>/
- FastCgiServer <%= script %> -processes <%= process %> -idle-timeout 30
-
- <Location />
- Allow from all
- </Location>
-</VirtualHost>
-