summaryrefslogtreecommitdiff
path: root/templates/vhosts/redirect/redirect.erb
blob: c788fdd01177de4ae9d2d92b9a4d1eca032b4fd8 (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
28
29
# <%= servername %>
<%- unless ssl_mode.to_s == 'only'  then -%>
<VirtualHost *:80>
<%= scope.function_template('apache/vhosts/partials/header_default.erb') %>

<%= scope.function_template('apache/vhosts/partials/logs.erb') %>
    <%- if ssl_mode.to_s == 'force' then -%>
    RewriteEngine On
    RewriteCond %{HTTPS} !=on
    RewriteRule (.*) https://%{SERVER_NAME}$1 [R=permanent,L]
    <% else -%>
    Redirect permanent / http://<%= options %>
    <%- end -%>
</VirtualHost>
<%- end -%>

<%- unless ssl_mode.to_s == 'false'  then -%>
<VirtualHost *:443>
<%  scope.unsetvar('vhost_part')
  scope.setvar('vhost_part',:ssl) -%> 
  <%= scope.function_template('apache/vhosts/partials/header_default.erb') %>
<%  scope.unsetvar('vhost_part') -%>

<%= scope.function_template('apache/vhosts/partials/logs.erb') %>

    Redirect permanent / https://<%= options %>

</VirtualHost>
<%- end -%>