From 848a5c61f0a3fd15742a3af239c1ef88b65d61bb Mon Sep 17 00:00:00 2001 From: 38elements Date: Fri, 19 May 2017 23:22:57 +0900 Subject: [PATCH] Fix Running via Gunicorn in deploying.md --- docs/sanic/deploying.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sanic/deploying.md b/docs/sanic/deploying.md index 6a41f08e..391c10da 100644 --- a/docs/sanic/deploying.md +++ b/docs/sanic/deploying.md @@ -54,7 +54,7 @@ In order to run Sanic application with Gunicorn, you need to use the special `sa for Gunicorn `worker-class` argument: ``` -gunicorn --bind 0.0.0.0:1337 --worker-class sanic.worker.GunicornWorker +gunicorn myapp:app --bind 0.0.0.0:1337 --worker-class sanic.worker.GunicornWorker ``` ## Asynchronous support