On Jul 30, 12:26 am, "Nimrod A. Abing" <[EMAIL PROTECTED]> wrote: > On 7/29/07, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > > > > I would love to try that on my development server but I can't seem to > > > find documentation on how to do it: > > > >http://code.djangoproject.com/wiki/ServerArrangements > > > > Can someone point me in the right direction? > > > Available from: > > > http://www.modwsgi.org > > > Django specific integration guide at: > > > http://code.google.com/p/modwsgi/wiki/IntegrationWithDjango > > I'm looking at the Django integration guide but I am confused as to > what I do with the following: > > > Using this function, a script file for a Django application which is > > compatible with mod_wsgi would be constructed as follows: > > > import os, sys > > sys.path.append('/usr/local/django') > > os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings' > > > import django.core.handlers.wsgi > > > application = django.core.handlers.wsgi.WSGIHandler() > > Where do I put that? views.py?
The documentation says: """Similarly, an 'apache' subdirectory should have been created within the package and the script file stored there under the name 'django.wsgi'.""" Rather than trying to launch straight into setting up Django, you might want to get a simple WSGI hello world application going first. For more basic instructions read: http://code.google.com/p/modwsgi/wiki/ConfigurationGuidelines elsewhere on the same site. Graham --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---