django的uwsgi部署时,socket问题
文件:
blogtest_nginx.conf
the upstream component nginx needs to connect to
upstream django {
# server unix:///home/aljun/djangotest/blogtest/blogtest.sock; # for a file socket
server 127.0.0.1:8000; # for a web port socket (we'll use this first)
}
configuration of the server
server {
# the port your site will be served on
listen 8000;
# the domain name it will serve for
server_name .example.com; # substitute your machine's IP address or FQDN
charset utf-8;
# max upload size
client_max_body_size 75M; # adjust to taste
# Django media
location /media {
alias /home/aljun/djangotest/blogtest/media; # your Django project's media files - amend as required
}
location /static {
alias /home/aljun/djangotest/blogtest/statices; # your Django project's static files - amend as required
}
# Finally, send all non-media requests to the Django server.
location / {
uwsgi_pass django;
include /home/aljun/djangotest/blogtest/uwsgi_params; # the uwsgi_params file you installed
}
}
当我执行:
uwsgi --socket :8001 --wsgi-file test.py
得到的却是400 badrequest
但是我的nginx跑起来了,http://localhost:8000/static/github1.css是有反应的
terminal的报错是
invalid request block size: 21573 (max 4096)...skip
求大神帮解答
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先你的测试 uwsgi 都没有过 ,先测试好吧
你的uwsgi端口跟nginx的访问端口也冲突了
多看看文档: Nginx support
算了给看下我的在nginx中配置
然后是项目的uwsgi 配置,我这里用的是ini格式
repository.ini
当然配置了uwsgi,则要启动它,别忘了