vote up 0 vote down star
1

Can IIS supporting ASP.NET and WAMP supporting PHP coexist on the same server?

We already have a WAMP stack setup on a Windows Server 2003 box to support some internal PHP applications, and I want to also setup CI Factory on that box which will try to configure IIS to support it's ASP.NET based dashboard. I want to make sure that there isn't a big chance of fubarring the WAMP stack that is already there. Will it be smart enough to handle *.PHP through Apache and *.aspx through IIS ?

Edit: Is there a way to get this to work on the same port?

flag

Doesn't the L in LAMP stand for Linux.. I'm impressed if your running Linux on Windows :) (I have seen DSL running inside Windows, but I wouldn't productionise that!) – ck Apr 2 at 17:07
@ck: I just assumed he meant WAMP. – R. Bemrose Apr 2 at 17:32
Yeh sorry, notice I tagged it as WAMP, but somehow my wires got crossed while writing. – aaronls Apr 2 at 17:49

4 Answers

vote up 2 vote down check

For example IIS on non-standard port (e.g. 8080) and Apache redirecting traffic to IIS via mod_proxy.

Separate vhosts:

<VirtualHost lamp.example.com>
  # standard vhost configuration
</VirtualHost>

<VirtualHost aspx.example.com>
  ProxyPass / aspx.example.com:8080
</VirtualHost>

One vhost:

<VirtualHost www.example.com>
  ProxyPassMatch ^/(.*\.aspx) www.example.com:8080/$1

  # ... standard vhost configuration for LAMP
</VirtualHost>
link|flag
vote up 2 vote down

As mentioned before, yes. If it helps to provide "real world examples", the GoDaddy account that I'm currently hosting my sites on gives me both stacks. I have a couple SMF forums that are PHP/MySQL based and I have a web application that is .NET 3.5/SQL Server 2005 based and they run just fine.

link|flag
Did you have to use different ports to get them to play nicely? – aaronls Apr 2 at 16:56
No. That may have been the way the hosting was setup, or because IIS7 was configured for it. But I literally removed all the PHP code of one of my apps and dropped the .NET app into the same folder and it ran just fine. However, instead of Apache, I believe the server is using FastCGI. – Dillie-O Apr 2 at 17:42
vote up 2 vote down

It's certainly possible. I have IIS+ASP+MSSQL and XAMPP (apache+PHP+MySQL) installed on my development machine and both of them don't interrupt work of another another. Atleast while different ports are used

link|flag
I ran outta votes today, I'll be back for the rest of you guys. – aaronls Apr 2 at 17:01
vote up 2 vote down

Yes. Both will run under IIS in a Windows server.

link|flag
I ran outta votes today, I'll be back for the rest of you guys. – aaronls Apr 2 at 17:02

Your Answer

Get an OpenID
or

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