vote up 1 vote down star
1

Hi,

I want to know the best way of hosting a web application for different domains. What I want to achieve is this:

  1. Have single folder of the web application for easier maintenance.
  2. Be able to override some parts of Web.Config per each site (ATM only ConnectionString, but could be more).
  3. Store log files on file system without interferring between web sites.
  4. Store other files (produced by the application) on file system without interferring between sites.

The brute-force solution would be to create directory for each web site and change all the configuration for each one independently. This one really guarantess the sites are independent.

But for the sake of easier maintenance (is it really easier?) I would like to have the application in one folder (so I deploy in to one place, upgrade once etc).
But not sure how in this case I can achive things I mentioned.

I would like to hear some suggestions and maybe there is an elegant solution for this.

Thanks,
Dmitriy.

flag

1 Answer

vote up 0 vote down check

If you use the same files for multiple sites you will experience file locking. I would argue it is easier to Manage the web sites by separating it as well, because having a single shared web.config could confuse settings. Eg pointing the correct tracing/logging to the correct locations.

link|flag
1  
What files can be locked? ASP.NET compiles the files into a separate temp directory per web site. And yes, shared config does confuse the settings and that's why I asked what is a elegant solution. – Dmitriy Nagirnyak Aug 19 at 5:52
When you use pre-compiled applications (faster application launch speed, and hides aspx source), the ASP .NET doesn't do a recompile. If you dont recompile, using the implementation strategy you mentioned, you still have multiple copies of the assemblies (stored in the iis cache), it is just asp .net manages their locations. – Russell Aug 20 at 0:18
I don't precompile the application. Can you point me to the article that shows .NET assemblies stored in IIS Cache? I don't think there is something to do with IIS cache. Also is your answer to have different folders for the same app and do not share anything? – Dmitriy Nagirnyak Aug 20 at 3:40
The cache is stored in "Temporary ASP.NET Files folder" as per this article: informit.com/articles/article.aspx?p=1073232/… I would reason to have different folders for the same app on each server in most scenarios. Hope you find this helpful. :) – Russell Aug 20 at 4:26
Temporary ASP.NET Files is ASP.NET Cache, but NOT IIS. The article has nothing about cashing assemblies in IIS. So I still don't get what *assemblies * can be locked because of so called "IIS Cache". – Dmitriy Nagirnyak Aug 20 at 4:33
show 4 more comments

Your Answer

Get an OpenID
or

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