mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-01 01:41:13 +08:00
44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
RequestHeader unset Expect early
|
|
RequestHeader set X-Forwarded-Scheme https early
|
|
|
|
RewriteEngine on
|
|
|
|
RewriteMap lowercase int:tolower
|
|
|
|
|
|
{% if env == "staging" %}
|
|
RewriteCond ${lowercase:%{SERVER_NAME}} ^[a-z0-9-]+\.id\.stg\.fedoraproject\.org$
|
|
{% else %}
|
|
RewriteCond ${lowercase:%{SERVER_NAME}} ^[a-z0-9-]+\.id\.fedoraproject\.org$
|
|
{% endif %}
|
|
|
|
|
|
RewriteRule ^(.+) ${lowercase:%{SERVER_NAME}}$1 [C]
|
|
|
|
|
|
{% if env == "staging" %}
|
|
RewriteRule ^([a-z0-9-]+)\.id\.stg\.fedoraproject\.org/.* {{proxyurl}}/openid/id/$1/ [P,L]
|
|
{% else %}
|
|
RewriteRule ^([a-z0-9-]+)\.id\.fedoraproject\.org/.* {{proxyurl}}/openid/id/$1/ [P]
|
|
{% endif %}
|
|
|
|
|
|
RewriteCond %{HTTPS} off
|
|
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L]
|
|
|
|
|
|
RewriteRule ^(.+) - [PT]
|
|
|
|
<Location /login>
|
|
# required for rewrite rule
|
|
Options +SymLinksIfOwnerMatch
|
|
RewriteEngine on
|
|
RewriteCond %{HTTPS} off
|
|
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
|
|
</Location>
|
|
|
|
|
|
ProxyPass {{localpath}} {{proxyurl}}{{remotepath}}
|
|
ProxyPassReverse {{localpath}} {{proxyurl}}{{remotepath}}
|
|
|