Concept Flow - WhiteNoise for static files
Start Django server
Request for static file
WhiteNoise middleware intercepts
Check if file in static files directory
Serve file
Add caching headers
Send file response to browser
End
When Django receives a request for a static file, WhiteNoise middleware checks if the file exists and serves it directly with caching headers, otherwise Django handles the request.