我使用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 "-"
我做错了什么?谢谢!
答案 0 :(得分:1)
要尝试的一些事项:
1.使uwsgi_pass成为位置块中的最后一个指令
2.仅仅为了完整性测试,chmod套接字777而不是664.如果解决了它,请查看谁拥有套接字以及nginx运行的是谁。
3.更改您的uwsgi配置以在备用端口上打开HTTP套接字并使用您的浏览器连接到它,再次仅用于进行健全检查。
您还注意到nginx日志似乎没有信息,但看起来像nginx访问日志,而不是错误日志。错误日志是否显示不同的内容?