On: Wed, 14 Jun 2000 12:30:50 EDT [EMAIL PROTECTED] wrote:
>Hi,
>
>I'm using a "light weight" apache server compiled with mod_proxy
>to pass dynamic requests off to my "heavy" mod_perl enabled
>server. However, mod_proxy isn't forwarding the REMOTE_ADDR the
>request originated from in the headers. I recall reading
>reports that this is/was a known problem. Is there a patch for
>mod_proxy that will have it include the originating IP in the
>header? The mod_proxy version I'm using is the standard w/
>apache 1.3.12.
>
I use the same setup. Though I'm not aware of a patch to mod_proxy, I
currently use a module written by Ask Bjoern Hansen called
proxy_add_forward.
Compiling this into your proxy server adds an X-Forwarded-For header to the
proxy requests which contains the ip of the client you're interested in.
You can find that module here
http://modules.apache.org/search?id=124
and probably a host of other places.
--kip