Metadata-Version: 1.1
Name: django-wsgi2
Version: 1.0.2
Summary: Enhanced WSGI support (for Django 3.0)
Home-page: https://github.com/fmoralesalcaide/django-wsgi
Author: Fernando Morales
Author-email: fmoralesalcaide@protonmail.com
License: BSD (http://dev.2degreesnetwork.com/p/2degrees-license.html)
Description: # django-wsgi2
        
        *django-wsgi2* is a fork of *django-wsgi* that:
        1. Is compatible with Django 3.0.
        2. Integrates easier (especially in production).
        
        ## Installation
        
        This package can be installed from pip3:
        ```
        pip3 install django-wsgi2
        ```
        
        ## Configuration
        
        In the original [django-wsgi documentation](https://pythonhosted.org/django-wsgi/ "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:
        ```python
        from django.core.wsgi import get_wsgi_application
        ```
        for this:
        ```pyton
        from django_wsgi.handler import get_wsgi_application
        ```
        
        That is all you need to do.
        
        ## Documentation
        
        Additionanl documentation for django-wsgi2 can be found in the original django-wsgi package [documentation](https://pythonhosted.org/django-wsgi/).
Keywords: django wsgi webob web
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Security
