Here is the example of what I am trying to do. JBoss Webserver Private IP : 192.168.10.100
JBoss Webserver Public IP 172.x.x.x Server connected to Jboss: 192.168.10.101 & 192.168.10.102 If I am on the Jboss machine I can access 192.168.10.101\abc\test.html If I am outside the network its not possible to access URL 192.168.10.101\abc\test.html To solve the problem I have PAC file as a proxy for my browser which redirect all request for 192.168.10.101 address to apache httpd proxy server which sits inside the (192.168.x.x) network. Upto this point everything works OK. Request comes to Apache httpd server but it is not able to pass the url as is to 192.168.10.101\abc\test.html and return the response back to the client. I am new to httpd server and trying to figure out how to configure httpd.Conf for this scenario. -Hardik