I have Apache (2.2, worker mpm) dedicated to serving only mod_wsgi (django) stuff (a nginx frontend does the rest). mod_wsgi is running in daemon mode with the default of 1 process and 15 threads (susceptible to change if I get more visitors). Since those values are set as hard limits, I figure I set Apache to limit the process and thread count to the same values like so:
ServerLimit 1 StartServers 1 MaxClients 15 MinSpareThreads 1 MaxSpareThreads 15 ThreadsPerChild 15 Is this indeed a good idea? If not, why does my dedicated apache perhaps need to get some extra leeway? -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
