summaryrefslogtreecommitdiff
path: root/templates/vhosts/static/CentOS.erb
blob: e990f5e5118eb7d61d2bed3a9f02bd10d18544ab (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
<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 %>
        Options <%= options %> <%- if do_includes.to_s == 'true' and not options.include?('+Includes') then -%>+Includes<%- end -%>
    </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>