Angry Bits

Words on bytes and bits

Django: serving hashed static files with Nginx

If you are using Django, you certainly know about a nice feature that was added to since 1.4 for better caching static files. I'm talking about the CachedStaticFilesStorage (doc), a new storage which saves static files with also their hashed content values appended to the name.

Why is ...