Django et Python + uWSGI

À l'aide de l'instruction j'essaie de me connecter Python + uWSGI.

J'ai fait de projet par défaut dans un dossier /home/sanya/django/pasteurl.
Cependant, l'avez ouvert dans un navigateur-je obtenir

uWSGI Error
wsgi application not found

Journaux contiennent les éléments suivants:

binding on TCP port: 9001
your server socket listen backlog is limited to 64 connections
added /home/sanya/django/pasteurl to pythonpath.
initializing hooks...done.
...getting the applications list from the 'django' module...
uwsgi.applications dictionary is not defined, trying with the "applications" one...
applications dictionary is not defined, trying with the "application" callable.
static applications not defined, you have to use the dynamic one...
spawned uWSGI master process (pid: 7637)
spawned uWSGI worker 1 (pid: 7646)
spawned uWSGI worker 2 (pid: 7647)
spawned uWSGI worker 3 (pid: 7648)
spawned uWSGI worker 4 (pid: 7649)

Fichier /home/sanya/django/pasteurl/django.wsgi

import os
import django.core.handlers.wsgi

# init django settings
os.environ['DJANGO_SETTINGS_MODULE'] = 'pasteurl.settings'

# define wsgi app
application = django.core.handlers.wsgi.WSGIHandler()

# mount this application at the webroot
# applications = { '/': 'application' }

Comme je l'ai réalisé, c'est quelque chose de mal avec cette application dictionnaire

InformationsquelleAutor San4ez | 2010-09-23