Hm, acho que encontrei a solução: basta substituir este wsgi-file = dashboard/wsgi.py
por esse module = dashboard.wsgi:application
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 é ..
Hm, acho que encontrei a solução: basta substituir este wsgi-file = dashboard/wsgi.py
por esse module = dashboard.wsgi:application