How do I put two servers onto the same sub domain?

  • Thread starter Thread starter damien
  • Start date Start date
D

damien

I have a unix server and a windows 2k3 server, both on the same domain,
but different subs, like this:

unix.example.com
iis.example.com

Both servers are providing javascript to my one web application. To get
around "no the cross-domain Javascript allowed" rule, I need to be able
to access both web servers like this:

joy.example.com

So, maybe like this:

joy.example.com/unix points to > unix.example.com
joy.example.com/iis points to > iis.example.com

Does anyone have any suggestions? Thanks!
 
Hi damien,
You cannot set this up in DNS. In order to make this happen, you would set
example.com to resolve to your IIS server then create a "virtual directory"
in IIS to to redirect the request example.com/unix to the url or IP Address
or the unix server.
For more information refer to:
http://support.microsoft.com/kb/324000/en-us
 
Back
Top