multiple sites

  • Thread starter Thread starter Zeng
  • Start date Start date
Z

Zeng

Hello,

If I have 20 websites hosted on the same machine and all point to the same
application code, how many instances of my app will be running? 1 or 20?
This is a very common case where private labeling is implemented, hope
someone would know. Thanks!

-zeng
 
If by "same application code" you mean that you have a single application,
defined as a single website in IIS, but you have multiple hostnames defined
in the host header configuration for that application, then I believe you'll
only be running a single instance.

IIS would resolve the host header to the appropriate application first, then
pass the request to the app. In this scenario, you should be fine.

/// M
 
Back
Top