django-wsgi2 is a fork of django-wsgi that:
- Is compatible with Django 3.0.
- Integrates easier (especially in production).
This package can be installed from pip3:
pip3 install django-wsgi2
In the original django-wsgi documentation the configuration is based on modifying the WSGI_APPLICATION setting value in settings.py. This is enough for development purposes but does not work in a production environment. In a production environment, it is not clear the location of the WSGI application that the HTTP server has to target requests to. The documentation was vague about this point, so this package provides an alternative:
This is how django-wsgi2 is configured both for testing and production:
In your Django project wsgi.py file (project_root/project_name/wsgi.py), replace this line:
from django.core.wsgi import get_wsgi_application
for this:
from django_wsgi.handler import get_wsgi_application
That is all you need to do.
Additionanl documentation for django-wsgi2 can be found in the original django-wsgi package documentation.