Reputation: 2533
We are serving over 100 sites with mod_wsgi process 2 thread 4 configuration. Apache memory usage pushes limits of 15GB in this point how accurate to use mod_wsgi?
Anybody had tried other alternatives in a similar situation?
Upvotes: 1
Views: 804
Reputation: 2524
I prefer to use fastcgi for multi-user sites. You get much better separation between users – separate processes, distinct user IDs, better resource allocation – I simply run "top" to figure out which customer has their server abused today.
Upvotes: 1