vote up 0 vote down star
1

I have 2 websites on same IIS pointing to the same codebase as they are white label site. Now should I create app pool for each website or should I use the same app pool for both?

I am concerned of resources on that server.

flag

78% accept rate

2 Answers

vote up 0 vote down check

If you have two websites and the same codebase, you might as well run them inside of the same Application Pool, as code changes are already a risk.

Now, if one has a potential of having a lot more traffic than another, then you might want to do separate ones to set different resource limits for each website.

link|flag
vote up 0 vote down

if you want to control resources like memory and cpu as well as bandwidth, you will need to have a resource pool for each site. Not sure what you mean by same codebase, each resource pool runs in its own process so be careful about sharing resources across sites.

link|flag

Your Answer

Get an OpenID
or

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