vote up 0 vote down star

Hi,

I am trying to set up my apache (version 2.2.3) to work as reverse proxy. I configured apache on public server as it is described at http://www.askapache.com/htaccess/reverse-proxy-apache.html

LoadModule proxy_module      modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule headers_module    modules/mod_headers.so
LoadFile   /usr/lib/libxml2.so
LoadModule proxy_html_module modules/mod_proxy_html.so

ProxyRequests off
ProxyPass /app1/ http://internal1.example.com/page1/
ProxyPassReverse /app1/ http://internal1.example.com/page1/
ProxyHTMLURLMap http://internal1.example.com/page1/ /app1/


internal1 is other server in local network.

Home page (www.example.com/app1/) is displayed correctly, but the problem occures when my internal server does redirection. In this case my browser (Firefox 3.5.3 or Internet Explorer 7) searches for address in local network (internal1.example.com/page1/). It seems for me that ProxyPassReverse directive is ignored by apache.

Thanks,
Dejan

flag
what happens when you drop the "page1/" form the ProxyPassReverse? (ProxyPassReverse /app1/ http&58;//internal1.example.com/) – Lance Rushing Oct 15 at 18:30
Thanks for your answer Lance, but it didn't help. My browser still tries to search for address in local network. – deyogenyye Oct 16 at 8:07

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.