Hi,
Again iam positng here.
what is proxy pass in apache?
i red the following urls.
http://httpd.apache.org/docs/2.2/mod...html#proxypass
ProxyPass /mirror/foo/
http://backend.example.com/
what is the meaning of /mirror/foo/
what is the meaning of
http://backend.example.com/
Please explain me for that and consider the following scneraio
Apache 2.0.63 is installed at 172.19.0.25(ebs.yan.com) in red hat
Two applications are running at 172.19.0.31:1008(ser.yan.com) and second is 172.19.0.31:7070(ser.yan.com) in windwos.
i added the entries into httpd.conf at ebs.yan.com.
<IfModule mod_proxy.c>
ProxyPass /
http://172.19.0.31:1008/
ProxyPassReverse /
http://172.19.0.31:1008/
</IfModule>
the above applications working fine when i type
http://ebs.yan.com/ instead of
http://ser.yan.com/.
Again i added the entries for second applications
http://172.19.0.31:7070/
<IfModule mod_proxy.c>
ProxyPass /help
http://172.19.0.31:7070/
ProxyPassReverse /help
http://172.19.0.31:7070/
</IfModule>
we added /help for difference from first application to second application.
Now only first application is working when i type
http://ebs.yan.com/.
For the second application i got the follwoings
http://ebs.pivotix.com/help/index.html
the when i type
http://ebs.yan.com/.
My question is how to differ the two applications for proxy in apache.