Forum Moderators: phranque
I'm running Redhat Linux 2.4.2-2 if that helps. I'm not sure how to check the Apache version. It's actually Oracle's HTTP Server, an extension to Apache: [orafaq.com...]
Welcome to WebmasterWorld!
Not my area of expertise, but you might be able to append the originating IP as a query string to the request, and then use CustomLog on the back-end to "fix" the log files.
I'm thinking of using mod_rewrite to proxy the request through to the back-end, with %{REMOTE_ADDR} added to the query string.
Jim
You should be able to accomplish this by appending an X-Forwarded-For header to the string being sent and then set your second server to accept the X-Forwarded-For as the IP.
There is some information at perl.apache.org and you will find much more in a search.
Hope this gives you an idea.
Justin
Added: You could probably actually append and use any string you like since X-Forwarded-For is one of the ways people can spoof their IP.