在前面的章節中咱們使用 python manage.py runserver 來運行服務器。這隻適用測試環境中使用。html
正式發佈的服務,咱們須要一個能夠穩定而持續的服務器,好比apache, Nginx, lighttpd等,本文將以 Nginx 爲例。python
可直接參考:Python uwsgi 安裝配置linux
Centos 下安裝步驟以下:nginx
yum groupinstall "Development tools" yum install zlib-devel bzip2-devel pcre-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel
CentOS 自帶 Python 2.4.3,但咱們能夠再安裝Python2.7.5:web
cd ~ wget http://python.org/ftp/python/2.7.5/Python-2.7.5.tar.bz2 tar xvf Python-2.7.5.tar.bz2 cd Python-2.7.5 ./configure --prefix=/usr/local make && make altinstall
easy_install 包 https://pypi.python.org/pypi/distributesql
安裝步驟:apache
cd ~ wget https://pypi.python.org/packages/source/d/distribute/distribute-0.6.49.tar.gz tar xf distribute-0.6.49.tar.gz cd distribute-0.6.49 python2.7 setup.py install easy_install --version
pip 包: https://pypi.python.org/pypi/pipdjango
安裝 pip 的好處是能夠用 pip list、pip uninstall 管理 Python 包, easy_install 沒有這個功能,只有 uninstall。python3.x
uwsgi:https://pypi.python.org/pypi/uWSGI瀏覽器
uwsgi 參數詳解:http://uwsgi-docs.readthedocs.org/en/latest/Options.html
pip install uwsgi uwsgi --version # 查看 uwsgi 版本
測試 uwsgi 是否正常:
新建 test.py 文件,內容以下:
def application(env, start_response): start_response('200 OK', [('Content-Type','text/html')]) return "Hello World"
而後在終端運行:
uwsgi --http :8001 --wsgi-file test.py
在瀏覽器內輸入:http://127.0.0.1:8001,查看是否有"Hello World"輸出,若沒有輸出,請檢查你的安裝過程。
pip install django
測試 django 是否正常,運行:
django-admin.py startproject demosite cd demosite python2.7 manage.py runserver 0.0.0.0:8002
在瀏覽器內輸入:http://127.0.0.1:8002,檢查django是否運行正常。
安裝命令以下:
cd ~ wget http://nginx.org/download/nginx-1.5.6.tar.gz tar xf nginx-1.5.6.tar.gz cd nginx-1.5.6 ./configure --prefix=/usr/local/nginx-1.5.6 \ --with-http_stub_status_module \ --with-http_gzip_static_module make && make install
你能夠閱讀 Nginx 安裝配置 瞭解更多內容。
uwsgi支持ini、xml等多種配置方式,本文以 ini 爲例, 在/etc/目錄下新建uwsgi9090.ini,添加以下配置:
[uwsgi] socket = 127.0.0.1:9090 master = true //主進程 vhost = true //多站模式 no-site = true //多站模式時不設置入口模塊和文件 workers = 2 //子進程數 reload-mercy = 10 vacuum = true //退出、重啓時清理文件 max-requests = 1000 limit-as = 512 buffer-size = 30000 pidfile = /var/run/uwsgi9090.pid //pid文件,用於下面的腳本啓動、中止該進程 daemonize = /website/uwsgi9090.log
找到nginx的安裝目錄(如:/usr/local/nginx/),打開conf/nginx.conf文件,修改server配置:
server { listen 80; server_name localhost; location / { include uwsgi_params; uwsgi_pass 127.0.0.1:9090; //必須和uwsgi中的設置一致 uwsgi_param UWSGI_SCRIPT demosite.wsgi; //入口文件,即wsgi.py相對於項目根目錄的位置,「.」至關於一層目錄 uwsgi_param UWSGI_CHDIR /demosite; //項目根目錄 index index.html index.htm; client_max_body_size 35m; } }
你能夠閱讀 Nginx 安裝配置 瞭解更多內容。
設置完成後,在終端運行:
uwsgi --ini /etc/uwsgi9090.ini & /usr/local/nginx/sbin/nginx
在瀏覽器輸入:http://127.0.0.1,你就能夠看到 django 的 "It work" 了。
安裝 uwsgi 若是失敗,有多是缺乏Python的頭文件和靜態庫,須要安裝開發版本:
For apt (Ubuntu, Debian...):
sudo apt-get install python-dev # for python2.x installs sudo apt-get install python3-dev # for python3.x installs
```
For yum (CentOS, RHEL...):
sudo yum install python-devel
For dnf (Fedora...):
sudo dnf install python2-devel # for python2.x installs sudo dnf install python3-devel # for python3.x installs
For zypper (openSUSE...):
sudo zypper in python-devel # for python2.x installs sudo zypper in python3-devel # for python3.x installs
非多站模式時 vhost = true 和 no-site = true 須要註釋掉,不然後續 nginx 配置文件中設置的入口文件則不生效,服務器會迴應 Internal Server error:
```
[uwsgi]
socket = 127.0.0.1:9090
master = true //主進程
vhost = true //多站模式
no-site = true //多站模式時不設置入口模塊和文件
workers = 2 //子進程數 reload-mercy = 10 vacuum = true //退出、重啓時清理文件 max-requests = 1000 limit-as = 512 buffer-size = 30000 pidfile = /var/run/uwsgi9090.pid //pid文件,用於下面的腳本啓動、中止該進程 daemonize = /website/uwsgi9090.log ```