On Thu, Jun 9, 2011 at 7:33 AM, habeeb rahman <[email protected]> wrote:
> apache rewrite rule: > RewriteRule ^/(.*)$ http://127.0.0.1:2443%{REQUEST_URI} [P,QSA,L] Why are you using a rewrite instead of mod_proxy? ProxyPass does some nice things by default, like adding the X-Forwarded-For header which will provide the address of the client. Otherwise, you will need to do this manually with rewrite rules. -jim

