Serving Private Files with Django and S3
Django’s
FileField
and
ImageField
are good at storing files, but on their own they don’t let us control access. When we’re dealing with public content this isn’t a problem, but sometimes your project needs to store and serve sensitive files, …