Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When acting as a reverse proxy, apache adds x-forwarded headers as described here.

http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#x-headers

In my configuration I have configured server A as a forward proxy. There is a rule like this:

RewriteRule proxy:(.*example.com)/(.*) $1.mysecondserver.com/$2 [P]

This rule lets the server request the resource from one of my other servers.

On the second server (origin) I have a virtual host container for the resource and another rewrite rule like this:

RewriteRule some-regex some-url [P]

It may not seem to make sense like this but there is a lot of other stuff going on that I left out as it is not part of the problem.

However that final request has these headers:

[X-Forwarded-For] => ip of 1st server
[X-Forwarded-Host] => example.myseconserver.com
[X-Forwarded-Server] => example.com

I want those headers gone.

I seem to be unable to unset them with mod_headers. I can add more entries to the, but I can not remove them

Any Ideas?

share|improve this question
The only way known to me is RequestHeader from mod_headers: use to delete these headers, e.g. RequestHeader unset X-Forwarded-For. This directive has lower priority and runs after mod_rewrite just before the request is run by its handler in the fixup phase. I'm not sure about X-Forwarded-* headers, but it works fine for User Agent and similar headers -- no problems removing them – LazyOne Sep 5 '11 at 23:45
that is just what i tried but those headers seem not to be editable this way – The Surrican Sep 6 '11 at 18:27

1 Answer

up vote 0 down vote accepted

in apache 2.4 there is the ProxyAddHeaders directive. in 2.2 you can use mod headers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.