gunicornPython 的 WSGI HTTP 服务器。 更多信息:https://docs.gunicorn.org/en/latest/run.html.
gunicorn {{导入路径:应用程序}}
gunicorn --bind {{localhost}}:{{8080}} {{导入路径:应用程序}}
gunicorn --reload {{导入路径:应用程序}}
gunicorn --workers {{4}} {{导入路径:应用程序}}
gunicorn --threads {{4}} {{导入路径:应用程序}}
gunicorn --certfile {{cert.pem}} --keyfile {{key.pem}} {{导入路径:应用程序}}