summaryrefslogtreecommitdiff
path: root/templates/vhosts/static
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-11-30 13:23:41 +0000
committermh <mh@immerda.ch>2008-11-30 13:23:41 +0000
commit734cf5b60fc6d4b18527303dca64acc538fec55c (patch)
treee6f2d06e96696c4f5ab334fa700e00ef5d11e863 /templates/vhosts/static
parent6a48d7417ad609c6ed457477ba661f098ee65219 (diff)
merged with puzzle
Diffstat (limited to 'templates/vhosts/static')
-rw-r--r--templates/vhosts/static/CentOS.erb24
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/vhosts/static/CentOS.erb b/templates/vhosts/static/CentOS.erb
new file mode 100644
index 0000000..1019deb
--- /dev/null
+++ b/templates/vhosts/static/CentOS.erb
@@ -0,0 +1,24 @@
+<VirtualHost *:80>
+ Include conf.d/defaults.inc
+
+ ServerName <%= servername %>
+ <%- unless serveralias.to_s.empty? -%>
+ ServerAlias <%= serveralias %>
+ <%- end -%>
+ DocumentRoot <%= documentroot %>
+
+ ErrorLog <%= logdir %>/error_log
+ CustomLog <%= logdir %>/access_log combined
+
+ <Directory "<%= documentroot %>">
+ AllowOverride <%= allow_override %>
+ </Directory>
+
+ <IfModule mod_security2.c>
+ SecRuleEngine <%= if mod_security.to_s == 'true' then "On" else "Off" end %>
+ </IfModule>
+
+ <%- unless additional_options == 'absent' then -%>
+ <%= additional_options %>
+ <%- end -%>
+</VirtualHost>