gunicorn Command Examples

Python WSGI HTTP Server. More information: https://docs.gunicorn.org/en/latest/run.html.

gunicorn {{import.path:app_object}}

gunicorn {{[-b|--bind]}} {{localhost}}:{{8080}} {{import.path:app_object}}

gunicorn --reload {{import.path:app_object}}

gunicorn {{[-w|--workers]}} {{4}} {{import.path:app_object}}

gunicorn --threads {{4}} {{import.path:app_object}}

gunicorn --certfile {{cert.pem}} --keyfile {{key.pem}} {{import.path:app_object}}