I'm using the following configuration to block all referers:
valid_referers none blocked domain.org;
if ($invalid_referer) {
return 403;
}
It works well.
But I'm receiving spam referring from anonym.to, which blanks the real referer. So it bypasses the block.
There's any way to block it permanently?
valid_referers none blocked domain.org;
if ($invalid_referer) {
return 403;
}
It works well.
But I'm receiving spam referring from anonym.to, which blanks the real referer. So it bypasses the block.
There's any way to block it permanently?