Usando instruction intento conectar Python + uWSGI.Django y Python + uWSGI
He hecho proyecto predeterminado en una carpeta /home/sanya/django/pasteurl. Sin embargo, se han abierto en un explorador consigo
uWSGI Error
wsgi application not found
Registros contener lo siguiente:
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)
Archivo /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' }
Como me di cuenta, es algo malo con esta aplicación diccionario
I descomentado porque nada ha cambiado. Creo que intenté todo. El código fuente tampoco me ayudó. – San4ez