Ticket #19633: 19633.diff

File 19633.diff, 729 bytes (added by Tim Graham, 11 years ago)
  • docs/howto/deployment/wsgi/gunicorn.txt

    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  
    4848Using Gunicorn's Django integration
    4949===================================
    5050
     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
    5157To use Gunicorn's built-in Django integration, first add ``"gunicorn"`` to
    5258:setting:`INSTALLED_APPS`. Then run ``python manage.py run_gunicorn``.
    5359
Back to Top