基于nginx和uWSGI在Ubuntu上部署Django

本文主要參考 uWSGI的文檔

1. nginx

安裝

sudo apt-get install nginx

啟動(dòng)功蜓、停止和重啟

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 #不安裝這個(gè),下面的安裝可能會(huì)失敗
pip install uwsgi

3. 基于uWSGI和nginx部署Django

1.原理

the web client <-> the web server(nginx) <-> the socket <-> uwsgi <-> Django

2.基本測試

測試uWSGI是否正常

在django項(xiàng)目的根目錄下創(chuàng)建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

參數(shù)含義:

  • http :8000: 使用http協(xié)議俐镐,8000端口
  • wsgi-file test.py: 加載指定文件 test.py

打開下面url筐喳,瀏覽器上應(yīng)該顯示hello world

http://example.com:8000

如果顯示正確贺待,說明下面3個(gè)環(huán)節(jié)是通暢的:

the web client <-> uWSGI <-> Python

測試Django項(xiàng)目是否正常

首先確保project本身是正常的:

python manage.py runserver 0.0.0.0:8000

如果沒問題岭妖,使用uWSGI把project拉起來:

uwsgi --http :8000 --module mysite.wsgi
  • module mysite.wsgi: 加載wsgi module

如果project能夠正常被拉起临庇,說明以下環(huán)節(jié)是通的:

the web client <-> uWSGI <-> Django

3.配置nginx

安裝nginx完成后,如果能正常打開http://hostname昵慌,說明下面環(huán)節(jié)是通暢的:

the web client <-> the web server

增加nginx配置

  • uwsgi_params文件拷貝到項(xiàng)目文件夾下假夺。uwsgi_params文件在/etc/nginx/目錄下,也可以從這個(gè)頁面下載
  • 在項(xiàng)目文件夾下創(chuàng)建文件mysite_nginx.conf,填入并修改下面內(nèi)容:
# 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
    }
}

這個(gè)configuration文件告訴nginx從文件系統(tǒng)中拉起media和static文件作為服務(wù)斋攀,同時(shí)相應(yīng)django的request

/etc/nginx/sites-enabled目錄下創(chuàng)建本文件的連接已卷,使nginx能夠使用它:

sudo ln -s ~/path/to/your/mysite/mysite_nginx.conf /etc/nginx/sites-enabled/

部署static文件

在django的setting文件中,添加下面一行內(nèi)容:

STATIC_ROOT = os.path.join(BASE_DIR, "static/")

然后運(yùn)行:

python manage.py collectstatic

測試nginx

首先重啟nginx服務(wù):

sudo /etc/init.d/nginx restart

然后檢查media文件是否已經(jīng)正常拉起:
在目錄/path/to/your/project/project/media directory下添加文件meida.png蜻韭,然后訪問http://example.com:8000/media/media.png 悼尾,成功后進(jìn)行下一步測試。

4.nginx and uWSGI and test.py

執(zhí)行下面代碼測試能否讓nginx在頁面上顯示hello, world

uwsgi --socket :8001 --wsgi-file test.py

訪問http://example.com:8000 ,如果顯示hello world肖方,則下面環(huán)節(jié)是否通暢:

the web client <-> the web server <-> the socket <-> uWSGI <-> Python

用UNIX socket取代TCP port

對(duì)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闺魏,并在此運(yùn)行uWSGI

uwsgi --socket mysite.sock --wsgi-file test.py

打開 http://example.com:8000/ ,看看是否成功

如果沒有成功:

檢查 nginx error log(/var/log/nginx/error.log)俯画。如果錯(cuò)誤如下:

connect() to unix:///path/to/your/mysite/mysite.sock failed (13: Permission
denied)

添加socket權(quán)限再次運(yùn)行:

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

如果上面一切都顯示正常析桥,則下面命令可以拉起django application

uwsgi --socket mysite.sock --module mysite.wsgi --chmod-socket=664

Configuring uWSGI to run with a .ini file

每次都運(yùn)行上面命令拉起django application實(shí)在麻煩,使用.ini文件能簡化工作,方法如下:

在application目錄下創(chuàng)建文件mysite_uwsgi.ini泡仗,填入并修改下面內(nèi)容:

# 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

現(xiàn)在埋虹,只要執(zhí)行以下命令,就能夠拉起django application:

uwsgi --ini mysite_uwsgi.ini # the --ini option is used to specify a file

Make uWSGI startup when the system boots

編輯文件/etc/rc.local, 添加下面內(nèi)容到這行代碼之前exit 0:

/usr/local/bin/uwsgi --socket /path/to/mysite.sock --module /path/to/mysite.wsgi --chmod-socket=666

uWSGI的更多配置

env = DJANGO_SETTINGS_MODULE=mysite.settings # set an environment variable
pidfile = /tmp/project-master.pid # create a pidfile
harakiri = 20 # respawn processes taking more than 20 seconds
limit-as = 128 # limit the project to 128 MB
max-requests = 5000 # respawn processes after serving 5000 requests
daemonize = /var/log/uwsgi/yourproject.log # background the process & log
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末娩怎,一起剝皮案震驚了整個(gè)濱河市搔课,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌截亦,老刑警劉巖爬泥,帶你破解...
    沈念sama閱讀 216,402評(píng)論 6 499
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異崩瓤,居然都是意外死亡袍啡,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,377評(píng)論 3 392
  • 文/潘曉璐 我一進(jìn)店門却桶,熙熙樓的掌柜王于貴愁眉苦臉地迎上來境输,“玉大人,你說我怎么就攤上這事颖系⌒崞剩” “怎么了?”我有些...
    開封第一講書人閱讀 162,483評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵集晚,是天一觀的道長窗悯。 經(jīng)常有香客問我区匣,道長偷拔,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,165評(píng)論 1 292
  • 正文 為了忘掉前任亏钩,我火速辦了婚禮莲绰,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘姑丑。我一直安慰自己蛤签,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,176評(píng)論 6 388
  • 文/花漫 我一把揭開白布栅哀。 她就那樣靜靜地躺著震肮,像睡著了一般。 火紅的嫁衣襯著肌膚如雪留拾。 梳的紋絲不亂的頭發(fā)上戳晌,一...
    開封第一講書人閱讀 51,146評(píng)論 1 297
  • 那天,我揣著相機(jī)與錄音痴柔,去河邊找鬼沦偎。 笑死,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的豪嚎。 我是一名探鬼主播搔驼,決...
    沈念sama閱讀 40,032評(píng)論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼侈询!你這毒婦竟也來了舌涨?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 38,896評(píng)論 0 274
  • 序言:老撾萬榮一對(duì)情侶失蹤扔字,失蹤者是張志新(化名)和其女友劉穎泼菌,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體啦租,經(jīng)...
    沈念sama閱讀 45,311評(píng)論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡哗伯,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,536評(píng)論 2 332
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了篷角。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片焊刹。...
    茶點(diǎn)故事閱讀 39,696評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖恳蹲,靈堂內(nèi)的尸體忽然破棺而出虐块,到底是詐尸還是另有隱情,我是刑警寧澤嘉蕾,帶...
    沈念sama閱讀 35,413評(píng)論 5 343
  • 正文 年R本政府宣布贺奠,位于F島的核電站,受9級(jí)特大地震影響错忱,放射性物質(zhì)發(fā)生泄漏儡率。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,008評(píng)論 3 325
  • 文/蒙蒙 一以清、第九天 我趴在偏房一處隱蔽的房頂上張望儿普。 院中可真熱鬧,春花似錦掷倔、人聲如沸眉孩。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,659評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽浪汪。三九已至,卻和暖如春凛虽,著一層夾襖步出監(jiān)牢的瞬間死遭,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,815評(píng)論 1 269
  • 我被黑心中介騙來泰國打工涩维, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留殃姓,地道東北人袁波。 一個(gè)月前我還...
    沈念sama閱讀 47,698評(píng)論 2 368
  • 正文 我出身青樓,卻偏偏與公主長得像蜗侈,于是被迫代替她去往敵國和親篷牌。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,592評(píng)論 2 353

推薦閱讀更多精彩內(nèi)容