初探django-使用uwsgi+supervisor+nginx来部署服务

2015/12/15

一、安装[root@tvm01 ~]# yum install nginx[root@tvm01 ~]# pip2.7 install uwsgi二、配置1、关闭django项目的 DEBUG 选项,并设置 ALLOWED_HOSTS 和 STATIC_ROOT :[root@tvm01 ~]# cd /opt/test-django/www[root@tvm01 www]# vim www/settings.pyDEBUG = FalseALLOWED_HOSTS = ['*']STATIC_ROOT = os.path.join(BASE_DIR,'static')2、收集django项目的static文件:[root@tvm01 www]# python manage.py collectstatic3、使用uwsgi来运行django服务:[root@tvm01 www]# /usr/local/bin/uwsgi --http 127.0.0.1:8090 --chdir /opt/test-django/www --module www.wsgi >/var/log/nginx/uwsgi.log 2>&1 & 4、使用supervisor来管理uwsgi服务:[root@tvm01 www]# pip2.7 install supervisor[root@tvm01 www]# echo_supervisord_conf > /etc/supervisord.conf \&& mkdir /etc/supervisor.d \&& /usr/bin/echo_supervisord_conf >/etc/supervisord.conf  \&& echo -e '[include]\nfiles=/etc/supervisor.d/*.ini' >>/etc/supervisord.conf \&& grep ^[^\;] /etc/supervisord.conf[root@tvm01 www]# whereis supervisordsupervisord: /etc/supervisord.conf /usr/local/bin/supervisord启动 supervisord 服务:[root@tvm01 www]# /usr/local/bin/supervisord -c /etc/supervisord.conf[root@tvm01 www]# echo '/usr/local/bin/supervisord -c /etc/supervisord.conf' >>/etc/rc.local5、配置uwsgi服务[root@tvm01 www]# cd /etc/supervisor.d[root@tvm01 www]# cat uwsgi.ini [program:uwsgi]command=/usr/local/bin/uwsgi --socket 127.0.0.1:8090 --chdir /opt/test-django/www --module www.wsgi#command=/usr/local/bin/uwsgi --http 127.0.0.1:8090 --chdir /opt/test-django/www --module www.wsgi启动 uwsgi 服务:[root@tvm01 www]# supervisorctl reload说明:uwsgi 使用 --socket 方式,表示:通过socket来访问,因此后续可以用 nginx uwsgi 模块来访问。uwsgi 使用 --http 方式,表示:可以直接通过 http访问,因此后续可以用 nginx proxy 来访问。5、使用nginx来处理静态文件和转发请求到后端的uwsgi服务1)nginx uwsgi[root@tvm01 www]# cat /etc/nginx/conf.d/www.conf server {    listen 80 default;    server_name www.test.com;    charset utf-8;    location /static {        alias /opt/test-django/www/static;    }    location / {        uwsgi_pass 127.0.0.1:8090;        include uwsgi_params;    }}2)nginx proxy[root@tvm01 www]# cat /etc/nginx/conf.d/www.conf upstream backend {    server 127.0.0.1:8090;}server {    listen 80 default;    server_name www.test.com;    charset utf-8;        location /static {        alias /opt/test-django/www/static;    }    location / {        proxy_pass http://backend;    }}[root@tvm01 www]# service nginx start三、备注笔者当然也有参考网络文章如何配置apache,,未测试成功如何配置apahce服务使用uwsgi模块,后续再抽空琢磨。ZYXW、参考1、nginx + uwsgi + django + python 部署http://my.oschina.net/u/240562/blog/127298