Tôi đang sử dụng uWSGI và Nginx để máy chủ lên trang web Django của tôi (phiên bản 1.4). Cấu trúc tệp của tôi là django_mysite/django_mysite/trong đó có tệp wsgi.py.
Tôi tiếp tục nhận được 502 lỗi cổng không hợp lệ. Tôi có các máy chủ khác đang chạy nginx và chúng hoạt động tốt.nginx django 502 cổng xấu
nginx cấu hình của tôi:
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;
}
}
tập tin wsgi.py của tôi: 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()
Các lỗi trong bản ghi là:
*3 recv() failed (104: Connection reset by peer) while reading response header from upstream
Cảm ơn
Nhật ký nói gì? –
* 42 kết nối() để unix: ///tmp/uwsgi.sock không thành công (2: Không có tệp hoặc thư mục nào) trong khi kết nối với thượng nguồn –