Python WSGI HTTP 서버. 더 많은 정보: https://gunicorn.org/.
gunicorn {{import.path:app_object}}
gunicorn --bind {{localhost}}:{{8080}} {{import.path:app_object}}
gunicorn --reload {{import.path:app_object}}
gunicorn --workers {{4}} {{import.path:app_object}}
gunicorn --threads {{4}} {{import.path:app_object}}
gunicorn --certfile {{cert.pem}} --keyfile {{key.pem}} {{import.path:app_object}}