Metadata-Version: 2.1
Name: django-sslserver-v2
Version: 1.0
Summary: An SSL-enabled development server for Django. Supports latest versions of Django and Python
Author-email: Shashwat <shashwat13.8@gmail.com>
License: MIT
Keywords: django-sslserver,sslserver
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.12
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 4.0
Classifier: Framework :: Django :: 4.2
Requires-Python: >=2
Description-Content-Type: text/x-rst
License-File: LICENSE
License-File: AUTHORS
Requires-Dist: Django>=1.8

====================
Django SSL Server v2
====================

.. image:: https://img.shields.io/pypi/v/django-sslserver-v2.svg
    :target: https://pypi.python.org/pypi/django-sslserver-v2

.. image:: https://img.shields.io/pypi/pyversions/django-sslserver-v2.svg
    :target: https://pypi.python.org/pypi/django-sslserver-v2/

Django SSL Server v2 is a SSL-enabled development server for the Django Framework, a clone of `django-sslserver
<https://github.com/teddziuba/django-sslserver>`_. This project is actively maintained and supports the latest version of Django and Python.

Please note that this `should not be used for production setups
<https://docs.djangoproject.com/en/4.2/ref/django-admin/#runserver>`_. This
app is intended for special use-cases. Most people should instead do a proper
`production deployment
<https://docs.djangoproject.com/en/4.2/howto/deployment/>`_ where a real
webserver such as Apache or NGINX handles SSL.

Getting Started
===============

Install the module in your Python distribution or virtualenv::

  $ pip install django-sslserver-v2

Add the application to your `INSTALLED_APPS`::

  INSTALLED_APPS = (...
  "sslserver",
  ...
  )

Start a SSL-enabled debug server::

  $ python manage.py runsslserver

and access app on https://localhost:8000 or start server on specified port::

  $ python manage.py runsslserver 127.0.0.1:9000
  
IPv6 support::

  $ python manage.py runsslserver -6 [::]:7443

You'll now be able to access your Django app on https://localhost:9000/


Browser Certificate Errors
==========================

Using the default settings, your local browser will make all sorts of noise that it *doesn't trust the certificate*. **This is expected.**

Django SSL Server ships "batteries included" with a self-signed server certificate. With self-signed certificates,
the server is effectively telling the user, "I'm such-and-such server, because I said so". Whereas, with a commercial
SSL certificate, the server tells the user, "I'm Bank of America, because VeriSign said so (or any other commercial certificate authority)."

There are two options for making the certificate warning go away in development:

**Option 1**: Tell your browser to explicitly trust the certificate. You can do this in your browser's "advanced settings"
tab, by installing ``sslserver/certs/development.crt`` as a trusted certificate. The mechanism for this varies from browser to browser.

**Option 2**: Use a certificate from a CA that your browser trusts, for example `Letsencrypt <https://letsencrypt.org>`_.
If you have a certificate/key pair from a certificate authority,
you can tell Django SSL Server to use it with the following arguments::

  $ python manage.py runsslserver --certificate /path/to/certificate.crt --key /path/to/key.key


Third-Party Static File Handlers
================================

If you're using a wrapper around your WSGI application such as dj_static or WhiteNoise, you probably want to let it handle serving
static files. Otherwise, you may see 404s when requesting static files. You can disable the default behavior by using the ``--nostatic``
option.

Getting Involved
================

Feel free to open pull requests or issues. GitHub is the canonical location of this project.

Special Thanks
===============
Special thanks to `@teddziuba
<https://github.com/teddziuba>`_ for building `django-sslserver
<https://github.com/teddziuba/django-sslserver>`_ and all the `contributers
<https://github.com/shashwat2003/django-sslserver-v2/blob/master/AUTHORS>`_
