2009/12/7 [email protected] <[email protected]>: > Hello, > > I am new to Django and I am trying to get through the djangoproject > tutorial. > > Here is my configuration: Apache 2.2.2, Django 1.1 > > httpd.conf: > LoadModule wsgi_module modules/mod_wsgi.so > > <Directory /u/chiwilli/apache/wsgi-scripts> > Order allow,deny > Allow from all > </Directory> > > WSGIScriptAlias /wsgi-scripts/ /u/chiwilli/apache/wsgi-scripts/ > django.wsgi
The instructions DO NOT say to have a trailing slash on second argument where third argument is a WSGI script file. Remove it so you have: WSGIScriptAlias /wsgi-scripts /u/chiwilli/apache/wsgi-scripts/django.wsgi Also read: http://code.google.com/p/modwsgi/wiki/ConfigurationGuidelines where is says when and when not to have a trailing slash. Graham > <VirtualHost *:80> > ServerName silo.cs.indiana.edu > ServerAdmin [email protected] > DocumentRoot /u/chiwilli/apache/wsgi-scripts > </VirtualHost> > > .bachrc: > > PYTHONPATH=/u/chiwilli/django/lib/python > export PYTHONPATH > > django is at: > /u/chiwilli/Django-1.1.1/django > > /u/chiwilli/apache/wsgi-scripts/django.wsgi: > import os > import sys > > sys.path.append('/u/chiwilli/Django-1.1.1/django') > > os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings' > > import django.core.handlers.wsgi > application = django.core.handlers.wsgi.WSGIHandler() > > When I try to access: > http://silo.cs.indiana.edu:8344/wsgi-scripts/mysite/admin/ > > I get the following: > Target WSGI script not found or unable to stat: /u/chiwilli/apache/ > wsgi-scripts/django.wsgimysite > in my apache/logs/error_log > > I think I am close because when I change WSGIScriptAlias to: > > WSGIScriptAlias /wsgi-scripts/ /u/chiwilli/apache/wsgi-scripts/ > > I can see a little test "hello world" page. > > Any ideas? > > Thank you. > > -- > > 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. > > > -- 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.
