Hello,
I'm curious what you folks use for image hotlink prevention?
I found this code but it's not working for me:
location ~ \.(jpg|png|gif)$ {
valid_referers server_names blocked none frienddomain.com *.frienddomain.com ;
if ($invalid_referer) {
return 403;
}
}
Any ideas what works?
Thanks