Fix Running via Gunicorn in deploying.md

This commit is contained in:
38elements 2017-05-19 23:22:57 +09:00
parent d49000e9f4
commit 848a5c61f0

View File

@ -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