django的uwsgi部署时,socket问题

发布于 2022-09-01 15:45:00 字数 1540 浏览 7 评论 0

文件:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一梦浮鱼 2022-09-08 15:45:00

首先你的测试 uwsgi 都没有过 ,先测试好吧

你的uwsgi端口跟nginx的访问端口也冲突了

listen 8000; nginx 

server 127.0.0.1:8000; uwsgi

多看看文档: Nginx support


算了给看下我的在nginx中配置

server {
    listen       80;
    server_name  repository.pub;

    charset utf-8;

    #access_log  logs/host.access.log  main;


    client_max_body_size  75M;

    location /static/ {
        alias /home/arch/repository/static/;
    }

    location / {
        root    /home/user/repository/repository;
        uwsgi_pass  127.0.0.1:3031;
        include     uwsgi_params;
    }

然后是项目的uwsgi 配置,我这里用的是ini格式

repository.ini

[uwsgi]
socket = 127.0.0.1:3031
chdir = /home/user/repository/
wsgi-file = repository/wsgi.py
processes = 4
threads = 2

当然配置了uwsgi,则要启动它,别忘了

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文