2009/8/31 weiwei <[email protected]>: > > here is my settings: > --------------------------------------------------------------------- > <VirtualHost *:80> > ServerName mydomain.com:80 > ServerAlias www.mydomain.com *.mydomain.com > UseCanonicalName Off > ServerAdmin "[email protected]" > DocumentRoot /var/www/hosts/mydomain.com/httpdocs > WSGIScriptAlias / /usr/local/django/mydomain/apache/ > django.wsgi > <Directory /usr/local/django/mydomain/apache> > Order deny,allow > Allow from all > </Directory> > </VirtualHost> > ---------------------------------------------------------------------------------- > and wsgi script: > > ------------------------------------------------------------------------- > import os, sys > sys.path.append('/usr/local/django') > sys.path.append('/usr/local/django/mydomain') > os.environ['DJANGO_SETTINGS_MODULE'] = 'mydomain.settings' > > import django.core.handlers.wsgi > > application = django.core.handlers.wsgi.WSGIHandler() > ---------------------------------------------------------------------------------- > > I am on fedora11. > > Thanks for any help.
First guess would be that you are using an old version of mod_wsgi. The latest is 2.5, what are you using? There was a configuration corruption issue that might cause this specific problem. It was fixed in 2.3 or 2.4. So, indicate what version of mod_wsgi you are using and I want to see the full error messages from the Apache error logs around when that occurred. 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 -~----------~----~----~----~------~----~------~--~---
