Skip to content

Instantly share code, notes, and snippets.

@ItsMeooooooo
Created September 30, 2015 13:24
Show Gist options
  • Save ItsMeooooooo/72fa8920cfb826984c3d to your computer and use it in GitHub Desktop.
Save ItsMeooooooo/72fa8920cfb826984c3d to your computer and use it in GitHub Desktop.
location ~ .(gif|png|jpe?g)$ {
valid_referers none blocked mywebsite.com *.mywebsite.com;
if ($invalid_referer) {
return 403;
}
}
location /pict/ {
valid_referers none blocked mywebsite.com *.mywebsite.com;
if ($invalid_referer) {
return 403;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment