summaryrefslogtreecommitdiff
path: root/templates/vhosts/redirect/redirect.erb
blob: 6fc6922820b83308a992fd423753ee89de5275f6 (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
30
31
32
# <%= servername %>
<%- unless ssl_mode.to_s == 'only'  then -%>
<VirtualHost *:80>
<%  scope.unsetvar('vhost_part')
  scope.setvar('vhost_part',:normal) -%> 
  <%= scope.function_template('apache/vhosts/partials/header_default.erb') %>
<%  scope.unsetvar('vhost_part') -%>

<%= 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 -%>