I have an application that uses \"secure\" cookies and want to test it\'s functionality without needing to set up a complicated SSL enabled development server. Is there any
just install
sudo pip install django-sslserver
include sslserver in installed aps
INSTALLED_APPS = (... "sslserver", ... )
now you can run
python manage.py runsslserver 0.0.0.0:8888