Hi,
We tried to confgiure the proxy on red hat4.2
our applications urls is
http://172.19.0.31:1008/Login.jsp (windows server).
It is a local network.
we installed apache2.0.63 on 172.19.0.25(red hat 4.2).
and enabled the ssl,proxy modules on that server.
create test RAS and CSR and CRT on that machine.
Here i would like to redirect from
http://172.19.0.31:1008/Login.jsp to
http://172.19.0.25.
we added the following entries into httd.conf at 172.19.0.25
ProxyRequests Off
ProxyVia On
<Directory proxy:*>
Order deny,allow
#Deny from all
Allow from all
</Directory>
<IfModule mod_proxy.c>
ProxyPass /login
http://172.19.0.31:1008/Login.jsp
ProxyPassReverse /login
http://172.19.0.31/Login.jsp
</IfModule>