You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Hardik Vaishnav <ha...@gmail.com> on 2014/03/23 15:34:15 UTC

[users@httpd] apache httpd proxy configuration

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