基於python的web項目,常見的部署方法有:
fcgi:用spawn-fcgi或框架自帶的工具對各個project分別產生監聽進程,然後和http服務互動。
wsgi:利用http服務的mod_wsgi模組跑各個project。
不過還有個uwsgi,它既不用wsgi協議也不用fcgi協議,而是自創了一個uwsgi的協議,據作者說該協議大約是fcgi協議的10倍那麼快。 uwsgi的主要特點如下:
超快速的表現。
低記憶體佔用(實測為apache2的mod_wsgi的一半左右)。
多app管理。
詳盡的日誌功能(可用來分析app效能和瓶頸)。
高度可自訂(記憶體大小限制,服務一定次數後重新啟動等)。
環境ubuntu 12.04 ip:10.1.6.79
安裝nginx
apt-get install nginx-full nginx-common
nginx設定/etc/nginx/sites- enabled/example
server { listen 80; server_name 10.1.6.79; access_log /var/log/nginx/example_access.log; error_log /var/log/nginx/example_error.log; root /var/www/example; location / { uwsgi_pass 127.0.0.1:9001; include uwsgi_params; uwsgi_param uwsgi_scheme $scheme; uwsgi_param server_software nginx/$nginx_version; } }
安裝uwsgi
apt-get install uwsgi uwsgi-plugin-python
如果您想要安裝所有的uwsgi插件,則可以安裝uwsgi-plugin-all軟體包
uwsgi設定/etc/uwsgi/apps-enabled/default.xml##
<uwsgi> <plugin>python</plugin> <socket>127.0.0.1:9001</socket> <pythonpath>/var/www/example/app/</pythonpath> <app mountpoint="/"> <script>wsgi_configuration_module</script> </app> <master/> <processes>4</processes> <reload-mercy>8</reload-mercy> <cpu-affinity>1</cpu-affinity> <max-requests>2000</max-requests> <limit-as>512</limit-as> <reload-on-as>256</reload-on-as> <reload-on-rss>192</reload-on-rss> <no-orphans/> <vacuum/> </uwsgi>uwsgi設定檔中的參數也可以在指令列透過uwsgi指定,設定檔除了xml格式外,還可以寫成ini格式的,軟體包安裝完畢後在/usr/share/doc/uwsgi/examples/conffile目錄下會有一些xml和ini格式設定檔的範例。 wsgi_configuration_module.py腳本內容
#!/usr/bin/python import os import sys sys.path.append('/var/www/example/app') os.environ['python_egg_cache'] = '/var/www/example/.python-egg' def application(environ, start_response): status = '200 ok' output = 'hello world!' response_headers = [('content-type', 'text/plain'), ('content-length', str(len(output)))] start_response(status, response_headers) return [output]
#啟動uwsgi
uwsgi -x /etc/uwsgi/apps-enabled/default.xml --daemonize /var/log/uwsgi/app/default.loguwsgi 的參數:
-m 開啟master行程## -p 4 開啟4個程序
-s 使用的連接埠或socket位址
-d 使用daemon的方式運作, 注意, 使用-d後, 需要加上log檔案位址, 例如-d /var/log/uwsgi .log
-r 10000 開啟10000個進程後, 自動respawn下
-t 30 設定30s的超時時間, 超時後, 自動放棄此連結
–limit-as –limit-as 32 將進程的總記憶體量控制在32m
-x 使用設定檔模式
並發4個執行緒
uwsgi -s :9090 -w myapp -p 4
uwsgi -s :9090 -w myapp -m -p 4
uwsgi -s :9090 -w myapp -m -p 4 -t 30
uwsgi -s :9090 -w myapp -m -p 4 -t 30 --limit-as 128
#
uwsgi -s :9090 -w myapp -m -p 4 -t 30 --limit-as 128 -r 10000
uwsgi -s :9090 -w myapp -m -p 4 -t 30 --limit-as 128 -r 10000 -d uwsgi.log
#inherited_config=/usr/share/uwsgi/conf/default.ini inherited_config=/etc/uwsgi/apps-enabled/default.xml啟動nginx
/etc/init.d/nginx start
效果如下:
測試腳本test.py
#!/usr/bin/python def application(env,start_response): start_response('200 ok',[('content_type','text/html')]) return "congraduation!!! uwsgi testing ok!!!
#启动web server uwsgi --http :9090 --wsgi-file test.py
以上是如何使用Nginx和uWSGI來設定Python的web項目的詳細內容。更多資訊請關注PHP中文網其他相關文章!