django项目使用nginx+uwsgi部署记录

django+uwsgi+nginx部署项目,经过网上找的资料拼凑后终于使得项目正常跑起来了,虽然一些配置项中的参数不太理解,先做一下相关配置的记录,以后在慢慢理解。

1.进入虚拟环境,安装uwsgi  pip install uwsgi

2.在项目目录下创建uwsgi.ini配置文件,配置如下:


[uwsgi]

#项目目录,填写到manage.py一级,uwsgi.ini文件也放这一级

chdir=/home/wmy/code/cmeds_git/cmeds/cmeds

#指定项目的application

module=cmeds.wsgi:application

#进程个数

workers=5

pidfile=uwsgi.pid

#指定IP端口

http=127.0.0.1:8080

#指定静态文件

static-map=/static=/home/wmy/code/cmeds_git/cmeds/static

#启动uwsgi的用户名和用户组

uid=root

gid=root

#启用主进程

master=true

#自动移除unix Socket和pid文件当服务停止的时候

vacuum=true

#序列化接受的内容,如果可能的话

thunder-lock=true

#启用线程

enable-threads=true

#设置自中断时间

harakiri=30

#设置缓冲

post-buffering=4096

buffer-size=65535

#设置日志目录

daemonize=uwsgi.log

#指定sock的文件路径

socket=uwsgi.sock


3.在uwsgi.ini一级启动uwsgi服务。uwsgi --ini uwsgi.ini;(关闭服务命令:uwsgi --stop uwsgi.pid)

4.安装nginx, sudo apt-get install nginx

5.启动nginx(默认安装完已启动cd /usr/sbin/; sudo nginx)

6.修改nginx配置,cd /etc/nginx/conf.d; sodu gedit nginx.conf;


server {  #这个server标识我要配置了

listen 80;  #我要监听那个端口

server_name 127.0.0.1 ;  #你访问的路径前面的url名称,ip地址(猜测为uwsgi服务器)

#access_log  /var/log/nginx/access.log  main;  # Nginx日志配置

charset  utf-8; # Nginx编码

gzip on;  #启用压缩,这个的作用就是给用户一个网页,比如3M压缩后1M这样传输速度就会提高很多

gzip_types text/plain application/x-javascript text/css text/javascript application/x-httpd-php application/json text/json image/jpeg image/gif image/png application/octet-stream;  #支持压缩的类型

error_page  404          /404.html;  #错误页面

error_page  500 502 503 504  /50x.html;  #错误页面

#指定项目路径uwsgi

location / {        #这个location就和咱们Django的url(r'^admin/', admin.site.urls),

include uwsgi_params;  #导入一个Nginx模块他是用来和uWSGI进行通讯的

uwsgi_connect_timeout 30;  #设置连接uWSGI超时时间

uwsgi_pass unix:/home/wmy/code/cmeds_git/cmeds/cmeds/uwsgi.sock;  #指定uwsgi的sock文件所有动态请求就会直接丢给他

}

#指定静态文件路径

location /static/ {

alias  /home/wmy/code/cmeds_git/cmeds/cmeds/static;

index  index.html index.htm;

}

}


7.重启nginx服务;  (cd /usr/sbin; sudo nginx -s stop; sudo nginx)

注:每次修改nginx和uwsgi配置需重启服务;查看服务是否启动ps ajx|grep nginx

虚拟环境为virtulenv+virtulenvwrapper.

你可能感兴趣的:(django项目使用nginx+uwsgi部署记录)