I have a server running IIS on port 80. The same server also has Apache installed, which is listening to other ports.
What I would like to achieve is the following: 1. Set up Apache so that it also listens on port 80, but only for a specific CNAME/alias. 2. Change the IIS web site settings, so that it ignores requests made to that specific CNAME. Basically, if someone tries to access the web site using the specified CNAME, they should receive the content hosted on the Apache server. If they access it using another alias/host name, or by specifying the IP address, they should get the content from the IIS web site.
Is there any way I could achieve that?