xstation Wrote:
-------------------------------------------------------
> eneted this in the conf file under http
>
> SetEnvIfNoCase User-Agent "^Baiduspider" block_bot
> Order Allow,Deny
> Allow from All
> Deny from env=block_bot
>
>
> but on restart got a error message
>
> Job for nginx.service failed. See 'systemctl status nginx.service' and
> 'journalctl -xn' for details.
> root@mail:~#
That is an config for Apache web server on Nginx you want to do this. Put inside location {} or server {}
if ($http_user_agent ~ "^Baiduspider") {
return 403;
}
http://www.networkflare.com/