I am setting up a web server with gunicorn + django. There are two deployment options: either use regular WSGI, or use gunicorn\'s django-integration. I\'m tempted to use
Starting with Django 1.4, your project will already have a wsgi.py, which can be used with any wsgi server (of which there are many, gunicorn being just one).
Essentially the old Django integration for gunicorn was just a convenience to get you up and running faster, but it's no longer necessary because all Django projects now have wsgi.py