Ich verwende uWSGI und Nginx, um meine Django-Website (Version 1.4) zu betreiben. Meine Dateistruktur ist django_mysite/django_mysite /, in der sich eine Datei wsgi.py befindet.
Ich bekomme immer 502 Schlechte Gateway-Fehler. Ich habe andere Server laufen von Nginx und sie funktionieren gut.nginx django 502 schlechtes Gateway
Meine nginx config:
server {
listen 80;
server_name beta.example.com;
keepalive_timeout 70;
root /path/to/django_mysite/django_mysite;
location root {
root html;
uwsgi_pass localhost:9000;
uwsgi_param UWSGI_SCRIPT django_wsgi;
include uwsgi_params;
}
location/{
uwsgi_pass localhost:9000;
include uwsgi_params;
uwsgi_param SCRIPT_NAME /django;
uwsgi_param UWSGI_SCRIPT django_wsgi;
uwsgi_modifier1 30;
}
}
Meine wsgi.py Datei: import sys import os
sys.path.append('/path/to/django_mysite/')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "django_mysite.settings")
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
Der Fehler im Protokoll ist:
*3 recv() failed (104: Connection reset by peer) while reading response header from upstream
Dank
Was sagen die Protokolle? –
* 42 connect() zu Unix: ///tmp/uwsgi.sock fehlgeschlagen (2: Keine solche Datei oder Verzeichnis) beim Verbinden mit Upstream –