summaryrefslogtreecommitdiff
path: root/templates/vhosts/php/php.erb
diff options
context:
space:
mode:
Diffstat (limited to 'templates/vhosts/php/php.erb')
-rw-r--r--templates/vhosts/php/php.erb8
1 files changed, 6 insertions, 2 deletions
diff --git a/templates/vhosts/php/php.erb b/templates/vhosts/php/php.erb
index c19b174..97e9b10 100644
--- a/templates/vhosts/php/php.erb
+++ b/templates/vhosts/php/php.erb
@@ -31,7 +31,9 @@
<%- end -%>
<%- if ssl_mode.to_s == 'force' then -%>
- Redirect permanent / https://<%= servername %>/
+ RewriteEngine On
+ RewriteCond %{HTTPS} !=on
+ RewriteRule (.*) https://%{SERVER_NAME}$1 [R=permanent,L]
<%- end -%>
<%- if run_mode.to_s =~ /(proxy\-|static\-)?itk/ -%>
@@ -234,7 +236,9 @@
ProxyPassReverse / http://127.0.0.1/
<%- if ssl_mode.to_s == 'force' then -%>
- Redirect permanent / https://<%= servername %>/
+ RewriteEngine On
+ RewriteCond %{HTTPS} !=on
+ RewriteRule (.*) https://%{SERVER_NAME}$1 [R=permanent,L]
<%- end -%>
<%- if default_charset.to_s != 'absent' then -%>