summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2012-03-28 20:28:13 +0000
committerClaude Paroz <claude@2xlibre.net>2012-03-28 20:28:13 +0000
commit9ddbed6f15a4f04695da7601ddb5a8b1d0def865 (patch)
treeb9dfb073dc13fdd1c4dcae53e2018a5dd1f70842 /docs
parentf95baa1d8a8a96f843745118c38b7d13824a1e38 (diff)
Fixed 17993 -- Removed quotes around module parameter for wider compatibility. Thanks roberto@unbit.it for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17813 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/deployment/wsgi/uwsgi.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/howto/deployment/wsgi/uwsgi.txt b/docs/howto/deployment/wsgi/uwsgi.txt
index 2e05e05227..3ac2203544 100644
--- a/docs/howto/deployment/wsgi/uwsgi.txt
+++ b/docs/howto/deployment/wsgi/uwsgi.txt
@@ -47,7 +47,7 @@ uWSGI supports multiple ways to configure the process. See uWSGI's
Here's an example command to start a uWSGI server::
uwsgi --chdir=/path/to/your/project
- --module='mysite.wsgi:application' \
+ --module=mysite.wsgi:application \
--env DJANGO_SETTINGS_MODULE=mysite.settings \
--master --pidfile=/tmp/project-master.pid \
--socket=127.0.0.1:49152 \ # can also be a file
@@ -81,7 +81,7 @@ Example ini configuration file::
[uwsgi]
chdir=/path/to/your/project
- module='mysite.wsgi:application'
+ module=mysite.wsgi:application
master=True
pidfile=/tmp/project-master.pid
vacuum=True