diff --git a/docs/howto/deployment/wsgi/uwsgi.txt b/docs/howto/deployment/wsgi/uwsgi.txt
index 5b40d5f..22f3934 100644
a
|
b
|
Here's an example command to start a uWSGI server::
|
62 | 62 | --processes=5 \ # number of worker processes |
63 | 63 | --uid=1000 --gid=2000 \ # if root, uwsgi can drop privileges |
64 | 64 | --harakiri=20 \ # respawn processes taking more than 20 seconds |
65 | | --limit-as=128 \ # limit the project to 128 MB |
66 | 65 | --max-requests=5000 \ # respawn processes after serving 5000 requests |
67 | 66 | --vacuum \ # clear environment on exit |
68 | 67 | --home=/path/to/virtual/env \ # optional path to a virtualenv |