我正在关注配置nginx uwsgi的数字海洋教程以服务烧瓶应用程序。 Digital Ocean Tuttorial link 我已经提供了启动我的应用程序的服务。但是当我运行它时,我得到以下状态
处理:726 ExecStart = / home / user / app / my_project / venv / bin / uwsgi --ini my_project.ini(code = exited,status = 217 / USER)
myproject.ini包含运行uwsgi的配置
[uwsgi]
module = wsgi
master = true
processes = 5
socket = myproject.sock
chmod-socket = 660
vacuum = true
die-on-term = true
我可以在端口8000上使用uswgi运行应用程序,但无法将请求从nginx重定向到uwsgi。
nginx的配置是:
server {
listen 80;
server_name my_ip;
location / {
include uwsgi_params;
uwsgi_pass unix:/home/user/app/my_project/myproject.sock;
}
}
答案 0 :(得分:0)
我发现这是一个权限问题,套接字权限应该是666。