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