Apache web server: "proxying" a webapp from another server?
Posted
by
Riddler
on Server Fault
See other posts from Server Fault
or by Riddler
Published on 2011-01-04T18:10:01Z
Indexed on
2011/01/04
18:55 UTC
Read the original article
Hit count: 202
apache
|configuration
Sorry for the lame terminology - I'm no way a sysadmin... So here's the deal. I have two Linux boxes in the same network, let's refer to those boxes by their IPs, a.b.c.d and e.f.g.h. Each box runs some webapp, normally available like http://a.b.c.d/
and http://e.f.g.h/
. What I want to accomplish is this: with some Apache web server (which by the way lives on both boxes) configuration voodoo, the first app would be available via http://a.b.c.d/whatever1/
, and the 2nd app would be available as http://a.b.c.d/whatever2/
- but would still reside on another server (e.f.g.h). Long story short - is it at all possible to do this with Apache configuration magic and without touching the webapps and their configuration? If so - how? :) Thanks in advance!
© Server Fault or respective owner