码迷,mamicode.com
首页 > 系统相关 > 详细

基于nginx和uWSGI在Ubuntu系统上部署Django项目

时间:2016-08-12 22:04:42      阅读:339      评论:0      收藏:0      [点我收藏+]

标签:nginx   uwsgi   数聚传媒   

1、 nginx
1.1 安装

sudo apt-get install nginx
1.2启动、停止和重启
sudo /etc/init.d/nginx start
sudo /etc/init.d/nginx stop
sudo /etc/init.d/nginx restart
或者
sudo service nginx start
sudo service nginx stop
sudo service nginx restart
2、 uWSGI安装
用python的pip安装最简单:
apt-get install python-dev #不安装这个,下面的安装可能会失败
pip install uwsgi
3、基于uWSGI和nginx部署Django
3.1 基本测试
3.1.1 测试uWSGI是否正常

在django项目的根目录下创建test.py文件,添加源码如下:
# test.py
def application(env, start_response):
    start_response(‘200 OK‘, [(‘Content-Type‘,‘text/html‘)])
    return ["Hello World"] # python2
    #return [b"Hello World"] # python3
然后,Run uWSGI:
uwsgi --http :8000 --wsgi-file test.py
参数含义:
    http :8000: 使用http协议,8000端口
    wsgi-file test.py: 加载指定文件 test.py
打开下面url,浏览器上应该显示hello world
http://example.com:8000
如果显示正确,说明下面3个环节是通畅的:
the web client <-> uWSGI <-> Python
3.1.2 测试Django项目是否正常
首先确保project本身是正常的:
python manage.py runserver 0.0.0.0:8000
如果没问题,使用uWSGI把project拉起来:
uwsgi --http :8000 --module mysite.wsgi
    module mysite.wsgi: 加载wsgi module
如果project能够正常被拉起,说明以下环节是通的:
the web client <-> uWSGI <-> Django
3.2 nginx的配置和测试
安装nginx完成后,如果能正常打开http://hostname,说明下面环节是通畅的:
the web client <-> the web server
3.2.1 增加nginx配置
    将uwsgi_params文件拷贝到项目文件夹下。uwsgi_params文件在/etc/nginx/目录下,也可以从这个页面下载
    在项目文件夹下创建文件mysite_nginx.conf,填入并修改下面内容:
# mysite_nginx.conf

# the upstream component nginx needs to connect to
upstream django {
    # server unix:///path/to/your/mysite/mysite.sock; # for a file socket
    server 127.0.0.1:8001; # 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 /path/to/your/mysite/media;  # your Django project‘s media files - amend as required
    }

    location /static {
        alias /path/to/your/mysite/static; # your Django project‘s static files - amend as required
    }

    # Finally, send all non-media requests to the Django server.
    location / {
        uwsgi_pass  django;
        include     /path/to/your/mysite/uwsgi_params; # the uwsgi_params file you installed
    }
}
这个configuration文件告诉nginx从文件系统中拉起media和static文件作为服务,同时相应django的request
在/etc/nginx/sites-enabled目录下创建本文件的连接,使nginx能够使用它:
sudo ln -s ~/path/to/your/mysite/mysite_nginx.conf /etc/nginx/sites-enabled/
3.2.2 部署static文件
在django的setting文件中,添加下面一行内容:
STATIC_ROOT = os.path.join(BASE_DIR, "static/")
然后运行:
python manage.py collectstatic
3.2.3 测试nginx
首先重启nginx服务:
sudo /etc/init.d/nginx restart
然后检查media文件是否已经正常拉起:
在目录/path/to/your/project/project/media directory下添加文件meida.png,然后访问http://example.com:8000/media/media.png ,成功后进行下一步测试。
3.2.4 nginx and uWSGI and test.py
执行下面代码测试能否让nginx在页面上显示hello, world
uwsgi --socket :8001 --wsgi-file test.py
访问http://example.com:8000 ,如果显示hello world,则下面环节是否通畅:
the web client <-> the web server <-> the socket <-> uWSGI <-> Python
4 、 用UNIX socket取代TCP port
对mysite_nginx.conf做如下修改:
server unix:///path/to/your/mysite/mysite.sock; # for a file socket
# server 127.0.0.1:8001; # for a web port socket (we‘ll use this first)
重启nginx,并在此运行uWSGI
uwsgi --socket mysite.sock --wsgi-file test.py
打开 http://example.com:8000/ ,看看是否成功
如果没有成功:
检查 nginx error log(/var/log/nginx/error.log)。如果错误如下:
connect() to unix:///path/to/your/mysite/mysite.sock failed (13: Permission
denied)
添加socket权限再次运行:
uwsgi --socket mysite.sock --wsgi-file test.py --chmod-socket=666 # (very permissive)
or
uwsgi --socket mysite.sock --wsgi-file test.py --chmod-socket=664 # (more sensible)
5、Running the Django application with uswgi and nginx(运行带有uswgi 和nginx 的 Django应用)
如果上面一切都显示正常,则下面命令可以拉起django application
uwsgi --socket mysite.sock --module mysite.wsgi --chmod-socket=664
5.1、 Configuring uWSGI to run with a .ini file(使用 .ini文件配置 uWSGI 来启动项目)
每次都运行上面命令运行django application实在麻烦,使用.ini文件能简化工作,方法如下:
在application目录下创建文件mysite_uwsgi.ini,填入并修改下面内容:
# mysite_uwsgi.ini file
[uwsgi]

# Django-related settings
# the base directory (full path)
chdir           = /path/to/your/project
# Django‘s wsgi file
module          = project.wsgi
# the virtualenv (full path)
home            = /path/to/virtualenv

# process-related settings
# master
master          = true
# maximum number of worker processes
processes       = 10
# the socket (use the full path to be safe
socket          = /path/to/your/project/mysite.sock
# ... with appropriate permissions - may be needed
# chmod-socket    = 664
# clear environment on exit
vacuum          = true
现在,只要执行以下命令,就能够拉起django application:
uwsgi --ini mysite_uwsgi.ini # the --ini option is used to specify a file
5.2、Make uWSGI startup when the system boots(在系统启动时让uWSGI自启动)
编辑文件/etc/rc.local, 添加下面内容到这行代码之前exit 0:
/usr/local/bin/uwsgi --socket /path/to/mysite.sock --module /path/to/mysite.wsgi --chmod-socket=666


6、数聚传媒选择使用nginx+uwsgi

数聚传媒技术采用nginx+uwsgi部署django项目就是看中了它的如下特性:
1.    支持高并发量;
2.    方便管理多进程,发挥多核的优势;
3.    提升性能,因为uwsgi协议比WSGI协议有优势;
4.    安全,客户端对Web服务器的访问需要先经过反向代理服务器。这样可以防止外部程序对Web服务器的直接攻击;
5.    负载均衡,反向代理服务器可以根据Web服务器的负载情况,动态地把HTTP请求交给不同的Web服务器来处理,前提是要有多个Web服务器;
6.    提升Web服务器的IO性能。一个HTTP请求的数据,从客户端传输给服务器,是需要时间的,例如N秒,如果直接传给Web服务器,Web服务器就需要让一个进程阻塞N秒,来接收IO,这样会降低Web服务器的性能。如果使用反向代理服务器,先让反向代理服务器接收完整个HTTP请求,再把请求发给Web服务器,就能提升Web服务器的性能。还有一些静态文件的请求,可以直接交给反向代理来处理,不需要经过Web服务器。

 


基于nginx和uWSGI在Ubuntu系统上部署Django项目

标签:nginx   uwsgi   数聚传媒   

原文地址:http://11926581.blog.51cto.com/11916581/1837239

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!