uWSGI + Nginx,uWSGI收不到请求

uWSGI + Nginx, uWSGI can't receive request

我正在使用 uWSGI + Nginx 来部署 Django 应用程序。但是uWSGI 无法接收到来自Nginx 的任何请求。

WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x8e7250 pid: 20440 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 20440)
spawned uWSGI worker 1 (pid: 20445, cores: 1)
spawned uWSGI worker 2 (pid: 20446, cores: 1)
spawned uWSGI worker 3 (pid: 20447, cores: 1)
... no requests seen

这是我的配置文件:

uwsgi.ini

[uwsgi]
chdir           = /home/laike9m/Envs/blog/My_Blog
module          = my_blog.wsgi:application
home            = /home/laike9m/Envs/blog/
master          = true
processes       = 3
socket          = /tmp/uwsgi.sock
chmod-socket    = 664
vacuum          = true

nginx.conf

server {
    listen       80;

    location /media {
        alias /home/laike9m/media;
    }

    location /static {
        alias /home/laike9m/static;
    }

    location / {
        uwsgi_pass unix:/tmp/uwsgi.sock;
        include uwsgi_params;
    }
}

如果你访问http://107.170.253.157/,会报502错误。 在 Nginx 的日志中:

"GET / HTTP/1.1" 502 545 "-"

我做错了什么?谢谢!

一些尝试:
1. 使 uwsgi_pass 成为 location 块中的最后一个指令
2. 仅出于健全性测试目的,chmod 套接字 777 而不是 664。如果解决了问题,请查看谁拥有该套接字以及谁是 nginx 运行 as.
3. 更改您的 uwsgi 配置以在备用端口上打开 HTTP 套接字并使用您的浏览器连接到它,同样只是为了完整性检查目的。

你也注意到nginx日志好像没有任何信息,但那看起来像nginx访问日志,而不是错误日志。错误日志是否显示任何不同?