Windows Server – Running IIS and Apache on the Same Server

apache-2.2iiswindowswindows-server-2003

I have a Windows 2003 server and I run IIS on it. I want to run php on the server so I can host a drupal site. I wish to host the site using apache so that I can have clean URLs. Is it possible to run IIS and Apache? Would there be any tips that you would recommend?

Best Answer

You can have IIS and Apache living on the same port - if they are on different IP addresses. There is some special configuration you need to do for IIS though, as it typically binds all ports to all IPs. Here is documentation for how to configure IIS to only listen on certain ports/IPs: http://support.microsoft.com/kb/813368/EN-US/

Related Topic