On 17 September 2010 07:45, Aza <[email protected]> wrote: > The django.wsgi has a line that assigns the WSGIHandler() to the > variable, application, as shown above. But where in my django project > do I use or refer to this variable? > > I know this may be a simple question, but I can't see the link between > my dajango project and this handler.
You don't use it, mod_wsgi does. See: http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide#WSGI_Application_Script_File Specifically, the 'application' object is the entry point for mod_wsgi to call to invoke the WSGI application for each request. 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.
