Merge pull request #737 from 38elements/deploying

Fix Running via Gunicorn in deploying.md
This commit is contained in:
Eli Uriegas 2017-05-19 12:10:36 -07:00 committed by GitHub
commit a6dc4646db

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