基于nginx和uWSGI在Ubuntu上部署Django

本文主要參考 uWSGI的文檔

1. nginx

安裝

sudo apt-get install nginx

啟動、停止和重啟

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

1.原理

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

2.基本測試

測試uWSGI是否正常

在django項目的根目錄下創(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,瀏覽器上應該顯示hello world

http://example.com:8000

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

the web client <-> uWSGI <-> Python

測試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能夠正常被拉起,說明以下環(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文件拷貝到項目文件夾下。uwsgi_params文件在/etc/nginx/目錄下,也可以從這個頁面下載
  • 在項目文件夾下創(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
    }
}

這個configuration文件告訴nginx從文件系統(tǒng)中拉起media和static文件作為服務,同時相應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/")

然后運行:

python manage.py collectstatic

測試nginx

首先重啟nginx服務:

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 ,成功后進行下一步測試。

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

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權(quá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

每次都運行上面命令拉起django application實在麻煩,使用.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)系作者
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 228,030評論 6 531
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 98,310評論 3 415
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
    開封第一講書人閱讀 175,951評論 0 373
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經(jīng)常有香客問我,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 62,796評論 1 309
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當我...
    茶點故事閱讀 71,566評論 6 407
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 55,055評論 1 322
  • 那天,我揣著相機與錄音,去河邊找鬼。 笑死,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 43,142評論 3 440
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 42,303評論 0 288
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 48,799評論 1 333
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 40,683評論 3 354
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 42,899評論 1 369
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 38,409評論 5 358
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 44,135評論 3 347
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 34,520評論 0 26
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 35,757評論 1 282
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 51,528評論 3 390
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 47,844評論 2 372

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