Skip to content

Instantly share code, notes, and snippets.

@hg
Created May 3, 2026 09:41
Show Gist options
  • Select an option

  • Save hg/f0488d6659eca20d965faee9c73dcad7 to your computer and use it in GitHub Desktop.

Select an option

Save hg/f0488d6659eca20d965faee9c73dcad7 to your computer and use it in GitHub Desktop.
nginx spoonfeding garbage to badly behaved bots
if ($http_user_agent ~* "foo.ai") {
limit_rate 1k;
default_type application/octet-stream;
proxy_buffering off;
alias /dev/urandom;
return 200;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment