Gunicorn

来自开放百科 - 灰狐
2017年7月16日 (日) 04:38Allen (讨论 | 贡献)的版本

(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转到: 导航, 搜索

Gunicorn: Python WSGI HTTP Server

目录

简介

指南

$ pip install gunicorn
$ cat myapp.py
   def app(environ, start_response):
       data = b"Hello, World!\n"
       start_response("200 OK", [
           ("Content-Type", "text/plain"),
           ("Content-Length", str(len(data)))
       ])
       return iter([data])
 $ gunicorn -w 4 myapp:app
 [2014-09-10 10:22:28 +0000] [30869] [INFO] Listening at: http://127.0.0.1:8000 (30869)
 [2014-09-10 10:22:28 +0000] [30869] [INFO] Using worker: sync
 [2014-09-10 10:22:28 +0000] [30874] [INFO] Booting worker with pid: 30874
 [2014-09-10 10:22:28 +0000] [30875] [INFO] Booting worker with pid: 30875
 [2014-09-10 10:22:28 +0000] [30876] [INFO] Booting worker with pid: 30876
 [2014-09-10 10:22:28 +0000] [30877] [INFO] Booting worker with pid: 30877

项目

图集

链接

分享您的观点
个人工具
名字空间

变换
操作
导航
工具箱