Files
fedora-infra_ansible/roles/httpd/reverseproxy/templates/reversepassproxy.sticky-notes.conf
Patrick Uiterwijk 2aa9950702 Block all traffic for this paste at the proxies
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
2017-01-23 14:06:42 +00:00

21 lines
466 B
Plaintext

<Location /394536/>
require all denied
</Location>
{% if header_scheme %}
RequestHeader set X-Forwarded-Scheme https early
RequestHeader set X-Scheme https early
RequestHeader set X-Forwarded-Proto https early
{% endif %}
{% if header_expect %}
RequestHeader unset Expect early
{% endif %}
{% if keephost %}
ProxyPreserveHost On
{% endif %}
ProxyPass {{ localpath }} {{ proxyurl }}{{remotepath}}
ProxyPassReverse {{ localpath }} {{ proxyurl }}{{remotepath}}