Hi,
I try to setup a reverse proxy with httpd 2.2.15:
ProxyPass /112 http:/mywebserver/112
ProxyPassReverse /112 http:/mywebserver/112
and I want to rewrite some requests through it:
RewriteCond %{REQUEST_URI} /112
Also I would like to set some properties for this proxy:
<Proxy http:/mywebserver/112>
ProxySet keepalive=On
</Proxy>
What I am doing wrong?
Thanks