vote up 1 vote down star
1

Under my domain, one of the subdomain must be directed to one server that hosts the relevant applications, and the rest must be directed to another server that hosts the relavant applications.

So, any requests to the url appa.example.com\* must be directed to one server, and any requests to the url appb.example.com\* must be directed to another server.

The issue now is how to configure the Apache configuration on both servers-- maybe using configuration like ProxyPass or ProxyPassReverse so that they all the incoming requests can be directed correctly at the correct server?

Edit to make the question clearer.

flag

49% accept rate

2 Answers

vote up 0 vote down

I've done the same thing for my workplace (a University). Our primary website it hosted elsewhere but part of the site (student registration system) is hosted onsite.

What I did was to create a Authoritative (A) DNS Record (reg.domain.com) and made it point to the IP of our onsite server. And that did the trick!!!

Here's a screenshot of the same from my domain CP (domain and IP masked for obvious reasons)... alt text

It's essentially the same as what you're trying to do. Give it a shot and see :)

link|flag
vote up 2 vote down

The place to link an url to an IP (server) is the DNS.

For example if server A is at 1.2.3.4 and server B at 5.6.7.8 you link appa.example.com to 1.2.3.4 and appb.example.com to 5.6.7.8.

But if both servers are behind a firewall (with a single external IP address) you have to perform some tricks. (And you are probably looking for these tricks).

Have a look at An Introduction to Redirecting URLs on an Apache Server.

link|flag
Yup, I am looking at those tricks – Ngu Soon Hui Feb 26 at 8:58
Question was not that clear, but I Added a link which will possibly help. – Gamecat Feb 26 at 9:01
I think the link is not relevant; I am asking about redirecting different subdomain requests to different servers, not URL redirection – Ngu Soon Hui Feb 26 at 10:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.