Django uwsgi implantar. Não é possível encontrar "aplicativo"

1

Tem um problema ao iniciar o uwsgi:

unable to find "application" callable in file dashboard/wsgi.py
unable to load app 0 (mountpoint='') (callable not found or import error)

uwsgi.ini:

[uwsgi]
socket = /tmp/dashboard.sock
chdir = /srv/http/depo-dashboard/
wsgi-file = dashboard/wsgi.py
callable = app
processes = 4
threads = 2
chmod-socket = 666

wsgi.py:

import os

from django.core.wsgi import get_wsgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "dashboard.settings")

application = get_wsgi_application()

Parece-me que tudo deve estar ok, mas não é ..

    
por gr4k 21.05.2016 / 23:45

1 resposta

0

Hm, acho que encontrei a solução: basta substituir este wsgi-file = dashboard/wsgi.py por esse module = dashboard.wsgi:application

    
por 21.05.2016 / 23:57