Forum Moderators: phranque
I'm relative new at this, so hopefully I'll get the problem defined correctly here.
I'm running Apache 2 on a SuSE SLE9 linux box.
This is listening on port 80 for requests.
Externally, I have one IP address. at the moment, I have two external DNS entries defined which resolves to the same IP address.
i.e.
www.domain.com --> 202.123.123.122
apps.domain.com --> 202.123.123.122
Internally, I have two internal servers with two indepent apps, starting from the following URLs.
[intserv1.domain.com:8000...]
[intserv2.domain.com:7778...]
I have successfully reverse proxy the first app, using proxyPass and proxyPassReverse directives for the '/' folder.
i.e.
ProxyPass / [intserv1.domain.com:8000...]
ProxyPassReverse / [intserv1.domain.com:8000...]
Now, I'm not sure what to do next. If my goal is to get both these URLs working via port 80.
Another way of putting it is:
Clients will issue URLs in the form of:
[domain.com...]
[apps.domain.com...]
but will be directed to the internal servers in this fashion:
[domain.com...] --> [intserv1.domain.com:8000...]
[apps.domain.com...] -->
[intserv2.domain.com:7778...]
Jim