2009/2/16 kevin <[email protected]>: > > Thanks for the reply: > > Daemon mode: You are preaching to the converted. I was always going > to use daemon mode. ;) > What is new to me is that apache serves static and the daemons serve > wsgi.. that's nice. > > PHP: no php either. > > Worker MPM: Gotcha. > > But actually, and I see now that this was an error in my original > post, I was asking I guess the minimum apache modules to run to serve > up a mod_wsgi app?
I can't think of any other Apache modules that are specifically required. As long as you have either mod_mime or mod_alias to allow you to mount the WSGI application, you are probably fine. Obviously, if you want to use Apache for authentication/authorisation or use mod_wsgi auth provider hooks, then you need relevant Apache auth modules. BTW, one tip. If using nginx in front to serve static files and also proxy dynamic to Apache/mod_wsgi, then turn off access log in Apache if nginx already doing it. Access logging in Apache actually can have a surprising amount of overhead. Graham --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
