--- id: django-sslserver version: "0.22" license: MIT license_treatment: permissive maintenance: dormant --- # django-sslserver — An SSL-enabled development server for Django License: permissive · Maintenance: dormant · Downloads: 429.8K/mo ## What it is and what it does Django SSL Server is a development-only tool that adds an HTTPS-capable management command to Django, letting you test SSL-dependent features locally without setting up a real web server. It ships with a self-signed certificate and can also use custom certificates from a certificate authority. The server runs on localhost and supports IPv6. This is explicitly not for production use—it is a convenience wrapper around Django's development server that adds SSL support. It solves the narrow problem of needing to develop and test features that require HTTPS (such as secure cookies or mixed-content policies) without the overhead of configuring Apache or NGINX locally. Use it for: - Test HTTPS-only features (secure cookies, HSTS headers) during local development without production infrastructure. - Verify SSL certificate handling and browser trust behavior before deploying to production. - Debug mixed-content warnings and HTTPS redirect logic in a local environment. - Develop integrations with third-party services that require HTTPS callbacks to your app. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Provides an SSL-enabled development server for Django that runs HTTPS locally without requiring a production web server. Yes, if you need to test HTTPS locally and are using a Django version compatible with the package's last release (2019-12-10). No, if you are using modern Django versions (3.2+) or Python 3.8+, as the package is dormant and likely incompatible. Check your Django version against the classifiers first. ## Install pip install django-sslserver uv add django-sslserver poetry add django-sslserver ## Installing django-sslserver Before you install: Low install friction with a single runtime dependency on Django. Maintenance is dormant—last release was 2019-12-10 and no commits since 2024-06-01—so expect no active bug fixes or compatibility updates for newer Django versions. License in practice: MIT license is permissive; you can use this freely in commercial and private projects with minimal restrictions. Quickstart: pip install django-sslserver # Add to INSTALLED_APPS in settings.py: INSTALLED_APPS = ( ... "sslserver", ) # Run: python manage.py runsslserver Requires Django to be installed and a Django project with manage.py already set up. Verify before relying: - Whether the package works reliably with Django versions released after 2019 (classifiers list only up to Django 2.2). - Whether self-signed certificate generation still works on modern Python/OpenSSL versions. ## Package facts - License: MIT (permissive) - Python support: unspecified - Install friction: low - Maintenance: dormant - Downloads: 429.8K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags django https development server, local ssl testing django, django ssl development, https localhost django, django runsslserver, self-signed certificate django dev, django-dev-tools, ssl-testing [View on SkillFed](https://skillfed.io/packages/django-sslserver) · [View on PyPI](https://pypi.org/project/django-sslserver/)