2024-01-10, 02:26 PM
If you are using a reverse proxy (such as nginx) you can block browser user agents using a piece of code like this in the "server" section. I'm not home to try it, but it should look something like this
Code:
if ($http_user_agent ~* (Chrome|Edge|Firefox) ) {
return 403;
}