美文网首页
django+uwsgi+nginx部署实现负载均衡

django+uwsgi+nginx部署实现负载均衡

作者: amyhy | 来源:发表于2017-09-15 10:52 被阅读387次

在项目的文件夹下新建文件blog1.py文件

[uwsgi]
http =:8089
chdir = /home/student/project/newsite/
wsgi-file = /home/student/project/newsite/newsite/wsgi.py
processes = 4
threads = 2
stats = 127.0.0.1:9191

启动uwsgi ———>uwsgi --ini blog.ini

在/etc/nginx/conf.d 文件夹中建立一个以.conf结尾的文件 blog.conf

upstream backend {
    server 127.0.0.1:8089;
    server 10.0.167.200:8090;
}
server {
// 定义监听端口号
    listen  8094;
    server_name localhost www.yoyo.com;
    charset UTF-8;
    access_log  /home/student/project/newsite_access.log;
    error_log   /home/student/project/newsite_error.log;

    client_max_body_size 75M;

    location / {
        proxy_pass http://backend;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
}

相关文章

网友评论

      本文标题:django+uwsgi+nginx部署实现负载均衡

      本文链接:https://www.haomeiwen.com/subject/wjrssxtx.html