At the moment I am working on a .NET project and I thought I’d share this bit of useful information with you. I needed to configure wamp and IIS to work together seamlessly.
The simple solution is to have Apache work from a different port. Naturally, I wanted IIS to be the one on the different port but the main problem with this is that IIS boots with the operating system. Apache does not, which means that IIS will always get to port 80 before wamp. Damn!
Anyway, here is my solution. In httpd.conf look for the following line:
Listen 80
Change it to
Listen 8080
Restart Apache and navigate to http://localhost:8080 – you will now see the Wamp start page.
The final thing we need to do is to configure our virtual hosts file. So open it up and change any reference to port 80 to port 8080. For example
NameVirtualHost *:8080
<VirtualHost *:8080>
DocumentRoot "c:/wamp/www/"
ServerName localhost
</VirtualHost>
Hope this helps! Let me know what you think.




