diff --git a/docs/howto/deployment/wsgi/gunicorn.txt b/docs/howto/deployment/wsgi/gunicorn.txt
index c448329..14c80af 100644
a
|
b
|
ensure that is to run this command from the same directory as your
|
48 | 48 | Using Gunicorn's Django integration |
49 | 49 | =================================== |
50 | 50 | |
| 51 | .. note:: |
| 52 | |
| 53 | If you are using Django 1.4 or newer, it’s highly recommended to simply run |
| 54 | your application with the WSGI interface using the ``gunicorn`` command |
| 55 | as described above. |
| 56 | |
51 | 57 | To use Gunicorn's built-in Django integration, first add ``"gunicorn"`` to |
52 | 58 | :setting:`INSTALLED_APPS`. Then run ``python manage.py run_gunicorn``. |
53 | 59 | |