summaryrefslogtreecommitdiff
path: root/templates/vhosts/static/CentOS.erb
blob: 1e93756430ad76078d3b099079c7e5ae5fcb062b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<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 -%>
    RewriteEngine on
    RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
    RewriteRule .* - [F
</VirtualHost>