summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-01-22 16:15:52 -0500
committerTim Graham <timograham@gmail.com>2013-01-22 19:05:19 -0500
commit54887d686b1552ae98e3eb4fa57a64036eea72a5 (patch)
tree416e317f79968b820f127b06135e066645002401 /docs
parentdc0bf53276f28421006d041dc21c7dc8d0393b2d (diff)
[1.5.x] Fixed #19633 - Discouraged use of gunicorn's Django integration.
Backport of 0db86273ae from master
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/deployment/wsgi/gunicorn.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/howto/deployment/wsgi/gunicorn.txt b/docs/howto/deployment/wsgi/gunicorn.txt
index c4483291a3..14c80af0a0 100644
--- a/docs/howto/deployment/wsgi/gunicorn.txt
+++ b/docs/howto/deployment/wsgi/gunicorn.txt
@@ -48,6 +48,12 @@ ensure that is to run this command from the same directory as your
Using Gunicorn's Django integration
===================================
+.. note::
+
+ If you are using Django 1.4 or newer, it’s highly recommended to simply run
+ your application with the WSGI interface using the ``gunicorn`` command
+ as described above.
+
To use Gunicorn's built-in Django integration, first add ``"gunicorn"`` to
:setting:`INSTALLED_APPS`. Then run ``python manage.py run_gunicorn``.