how can I check the HTTP_REFERER while serving an image from my django app?
The thing is, all static and media files are served by nginx and my django app doesnot even worry about them, right?
do I need a new view function to catch all image urls and check their http_referer in this function? but I dont feel good with this idea.. what is the best way for this?