python - django的uwsgi部署时,socket问题
阿神
阿神 2017-04-17 15:31:16
[Python讨论组]

文件:

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

求大神帮解答

阿神
阿神

闭关修行中......

全部回复(1)
天蓬老师

首先你的测试 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,则要启动它,别忘了

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号