diff options
author | Ralph Bean <rbean@redhat.com> | 2014-12-08 20:12:10 +0000 |
---|---|---|
committer | Ralph Bean <rbean@redhat.com> | 2014-12-08 20:12:16 +0000 |
commit | 06a7fd8e48d5254495054d54751da3a42f5c66c4 (patch) | |
tree | d13abf0067490be8027427955f14c1cf0ca27c8b | |
parent | 7578d5ad530a57b81e42e15bf0472f48113d0875 (diff) | |
download | ansible-06a7fd8e48d5254495054d54751da3a42f5c66c4.tar.gz ansible-06a7fd8e48d5254495054d54751da3a42f5c66c4.tar.xz ansible-06a7fd8e48d5254495054d54751da3a42f5c66c4.zip |
Typofix.
-rw-r--r-- | roles/httpd/reverseproxy/templates/reversepassproxy.id.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/httpd/reverseproxy/templates/reversepassproxy.id.conf b/roles/httpd/reverseproxy/templates/reversepassproxy.id.conf index 1b49dd8c3..8693db518 100644 --- a/roles/httpd/reverseproxy/templates/reversepassproxy.id.conf +++ b/roles/httpd/reverseproxy/templates/reversepassproxy.id.conf @@ -13,11 +13,11 @@ RewriteCond ${lowercase:%{SERVER_NAME}} ^[a-z0-9-]+\.id\.fedoraproject\.org$ RewriteRule ^(.+) ${lowercase:%{SERVER_NAME}}$1 [C] -{{ if env == "staging" }} +{% if env == "staging" %} RewriteRule ^([a-z0-9-]+)\.id\.stg\.fedoraproject\.org/.* {{proxyurl}}/openid/id/$1/ [P,L] -{{ else }} +{% else %} RewriteRule ^([a-z0-9-]+)\.id\.fedoraproject\.org/.* {{proxyurl}}/openid/id/$1/ [P] -{{ endif }} +{% endif %} RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L] |