Skip to content

Commit

Permalink
Fix hardcoded typo3 oauth variable
Browse files Browse the repository at this point in the history
  • Loading branch information
medanthelinium committed Aug 28, 2023
1 parent b9a0014 commit e4087c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/apache/Includes/solr.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
SSLEngine on
SSLProxyEngine on
{% if solr.oauth2_proxy is defined and solr.oauth2_proxy -%}
ProxyPass /proserver/iap/auth/ http://127.0.0.1:{{ oauth2_proxy.config[typo3.oauth2_proxy].http_address.split(":")[-1] }}/proserver/iap/auth/
ProxyPassReverse /proserver/iap/auth/ http://127.0.0.1:{{ oauth2_proxy.config[typo3.oauth2_proxy].http_address.split(":")[-1] }}/proserver/iap/auth/
ProxyPass /proserver/iap/auth/ http://127.0.0.1:{{ oauth2_proxy.config[solr.oauth2_proxy].http_address.split(":")[-1] }}/proserver/iap/auth/
ProxyPassReverse /proserver/iap/auth/ http://127.0.0.1:{{ oauth2_proxy.config[solr.oauth2_proxy].http_address.split(":")[-1] }}/proserver/iap/auth/

ErrorDocument 401 /proserver/iap/sign_in

Expand Down

0 comments on commit e4087c8

Please sign in to comment.