You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
266 B
8 lines
266 B
5 years ago
|
# Determine which protocol to use
|
||
|
RewriteRule .* - [E=HTTP:http]
|
||
|
RewriteCond %{HTTPS} =on
|
||
|
RewriteRule .* - [E=HTTP:https]
|
||
|
{% if httpd_log_format == 'combined_virtual_backend' %}
|
||
|
SetEnvIf X-Forwarded-Proto https HTTPS=on
|
||
|
{% endif %}
|