I am attempting to troubleshoot an issue where certain marketplace add-ons and Jira REST API with basic auth do not work because headers are being stripped from request respones sent to Jira.
This occurs for all users attempting to use the API and I am wondering if you have any ideas as to what the issue may be.
Our mod_proxy configuration matches the recommendations offered in the Jira support docs.
```
# JIRA Proxy Configuration:
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
SSLProxyEngine On
ProxyRequests Off
ProxyPreserveHost On
ProxyVia Off
ProxyTimeout 300
RequestHeader unset Authorization
ProxyPass / http://127.0.0.1:8080/ retry=0 connectiontimeout=300 timeout=300
ProxyPassReverse / http://127.0.0.1:8080/\\
```
My assumption is that this is happening because of the `RequestHeader unset Authorization` was added to our httpd.conf. Is there any downside to removing this from my config?
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.