Deploying a Django Project, Part 6: SSL/TLS Certificate and Continuing Development
In Part 5 of this tutorial series, we launched our Django project on the web with our custom domain name. Our site is technically deployed and accessible to anyone in the world, but we would be lax in our duties as web developers if we did not secure our site's traffic. Currently, if you look at your site in a web browser, you will notice that it does not have a little padlock icon next to the URL, and the URL will begin with http:// rather than https://. Most sites these days are encrypted using transport layer security, or TLS. These sites have SSL/TLS certificates certifying …
Continue reading