gunicorn Command Examples

Python WSGI HTTP Server. More information: 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}}