summaryrefslogtreecommitdiff
path: root/templates/vhosts/static/CentOS.erb
diff options
context:
space:
mode:
Diffstat (limited to 'templates/vhosts/static/CentOS.erb')
-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>