django+uwsgi+nginx部署

在项目的文件夹下新建文件blog.ini文件

[uwsgi]
socket=: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

server {
    listen  8092;
    server_name localhost;
    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 / {
        include uwsgi_params;
        uwsgi_pass localhost:8089;
        uwsgi_read_timeout 2;
    }
}

你可能感兴趣的:(django+uwsgi+nginx部署)