Bootstrap

配置nginx+uwsgi+django遇到的那些坑

问题一:uwsgi--配置出错 bind(): Address already in use [core/socket.c line 769]

uwsgi已经启动,之前并没有彻底清除进程

#.pid文件中存储的是PID,也可用kill进行清除
uwsgi --stop uwsgi.pid
#8000为使用uwsgi绑定的端口号
sudo fuser -k 8000/tcp

问题二:nginx转发WebSocket请求 502 Bad Gateway

阿里云的网络问题

uwsgi.ini配置里的socket这里不能写127.0.0.1,要写阿里的内网ip地址。

nginx.conf中的uwsgi_pass这里学要写公网ip地址。

问题三:Django部署WebSocket 400错误处理

由于使用协议不一样,所以在请求头中需要做一些修改,在nginx.conf配置文件中修改

location / {
    proxy_http_version 1.1; 
	proxy_set_header Upgrade $http_upgrade;
	proxy_set_header Connection "upgrade";
    uwsgi_pass ......
}

 在uwsgi.ini配置文件中添加

WEBSOCKET_FACTORY_CLASS = 'dwebsocke
;