Iis – Are there any issues with having multiple IIS websites pointing at the same folder

hostingiisweb-hosting

I have a website that a number of customers are using to host their sites. They each have their own domain name, but are using the same hosted service. Is it better to have them run off the same IIS website with all the host headers on that site, or should I create a different website & app pool for each domain that point at the same physical directory on the server?

Best Answer

No reason to use multiple app pools unless you have an explicit reason for separating them. Otherwise it's just waste of memory.

There shouldn't be any issues in running multiple websites off the same directory. If at some point a client needs a different version, you can migrate them onto a different dir with a specialized code base / config / etc. If this is a scenario that might occur more often, then you might consider separating them onto different websites up front.

Related Topic