The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Operating Systems > HP-UX
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 03-27-2008
grial's Avatar
grial grial is offline Forum Advisor  
El UNIX es como un toro
  
 

Join Date: Jun 2006
Location: Madrid (Spain)
Posts: 531
Helo alfredo.
For that purposes, I usually use mod_proxy and configure Apache as a reverse proxy like this, on your serverA (for Apache 1.3):
Code:
ProxyRequests Off

<Directory proxy:*>
   Order Deny,Allow
   #Deny from all
   Allow from all
</Directory>

ProxyPass /application http://serverB/application
ProxyPassReverse /application http://serverB/application
Regards.