Python 的 WSGI http 服务器.
gunicorn {{导入路径:应用程序}}
gunicorn --bind {{localhost}}:{{8080}} {{导入路径:应用程序}}
gunicorn --reload {{导入路径:应用程序}}
gunicorn --workers {{4}} {{导入路径:应用程序}}
gunicorn --threads {{4}} {{导入路径:应用程序}}
gunicorn --certfile {{cert.pem}} --keyfile {{key.pem}} {{导入路径:应用程序}}