1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.zh/common/gunicorn.md

29 lines
705 B
Markdown
Raw Permalink Normal View History

2019-02-26 11:13:29 +08:00
# gunicorn
> Python 的 WSGI HTTP 服务器。
> 更多信息:<https://gunicorn.org/>.
2019-02-26 11:13:29 +08:00
- 运行 Python web 应用程序:
2019-02-26 11:13:29 +08:00
2019-10-18 10:33:27 +08:00
`gunicorn {{导入路径:应用程序}}`
2019-02-26 11:13:29 +08:00
- 在 localhost 上监听 8080 端口:
2019-02-26 11:13:29 +08:00
2019-10-18 10:33:27 +08:00
`gunicorn --bind {{localhost}}:{{8080}} {{导入路径:应用程序}}`
2019-02-26 11:13:29 +08:00
- 启用实时自动加载:
2019-02-26 11:13:29 +08:00
2019-10-18 10:33:27 +08:00
`gunicorn --reload {{导入路径:应用程序}}`
2019-02-26 11:13:29 +08:00
- 使用 4 个工作进程处理请求:
2019-02-26 11:13:29 +08:00
2019-10-18 10:33:27 +08:00
`gunicorn --workers {{4}} {{导入路径:应用程序}}`
2019-02-26 11:13:29 +08:00
- 使用 4 个工作线程处理请求:
2019-02-26 11:13:29 +08:00
2019-10-18 10:33:27 +08:00
`gunicorn --threads {{4}} {{导入路径:应用程序}}`
2019-02-26 11:13:29 +08:00
- 通过 HTTPS 运行应用程序:
2019-02-26 11:13:29 +08:00
2019-10-18 10:33:27 +08:00
`gunicorn --certfile {{cert.pem}} --keyfile {{key.pem}} {{导入路径:应用程序}}`