Chinese pages: correct Chinese punctuation (#5240)

This commit is contained in:
bl-ue
2021-08-02 04:41:09 -04:00
committed by GitHub
parent eaef3b4d21
commit 289e30dfb3
373 changed files with 1817 additions and 1810 deletions

View File

@@ -1,27 +1,27 @@
# gunicorn
> Python 的 WSGI http 服务器.
> Python 的 WSGI http 服务器
- 运行 python web 应用程序:
- 运行 python web 应用程序
`gunicorn {{导入路径:应用程序}}`
- 在 localhost 上监听 8080 端口:
- 在 localhost 上监听 8080 端口
`gunicorn --bind {{localhost}}:{{8080}} {{导入路径:应用程序}}`
- 启用实时自动加载:
- 启用实时自动加载
`gunicorn --reload {{导入路径:应用程序}}`
- 使用 4 个工作进程处理请求:
- 使用 4 个工作进程处理请求
`gunicorn --workers {{4}} {{导入路径:应用程序}}`
- 使用 4 个工作线程处理请求:
- 使用 4 个工作线程处理请求
`gunicorn --threads {{4}} {{导入路径:应用程序}}`
- 通过 https 运行应用程序:
- 通过 https 运行应用程序
`gunicorn --certfile {{cert.pem}} --keyfile {{key.pem}} {{导入路径:应用程序}}`