summaryrefslogtreecommitdiff
path: root/templates/vhosts/redirect/redirect.erb
diff options
context:
space:
mode:
Diffstat (limited to 'templates/vhosts/redirect/redirect.erb')
-rw-r--r--templates/vhosts/redirect/redirect.erb32
1 files changed, 0 insertions, 32 deletions
diff --git a/templates/vhosts/redirect/redirect.erb b/templates/vhosts/redirect/redirect.erb
deleted file mode 100644
index 6fc6922..0000000
--- a/templates/vhosts/redirect/redirect.erb
+++ /dev/null
@@ -1,32 +0,0 @@
-# <%= 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 -%>