Django und Python + uWSGI

Mit Anleitung ich versuche zu verbinden Python + uWSGI.

Ich aus Standard-Projekt in einem Ordner /home/sanya/django/pasteurl.
Aber, Sie öffnen in einem browser bekomme ich

uWSGI Error
wsgi application not found

Protokolle enthalten die folgenden:

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)

Datei /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' }

Als ich merkte, es ist etwas falsch mit diesem Anwendung Wörterbuch

InformationsquelleAutor San4ez | 2010-09-23

Schreibe einen Kommentar