Block some of the bots on my website
This commit is contained in:
parent
7d603f5a81
commit
d4b71942d7
1 changed files with 21 additions and 0 deletions
|
@ -37,6 +37,13 @@
|
|||
|
||||
services.nginx = {
|
||||
enable = true;
|
||||
commonHttpConfig = ''
|
||||
map $http_user_agent $limit_bots {
|
||||
default 0;
|
||||
~*(AhrefsBot|PetalBot|bingbot|gptbot|ZoominfoBot|BLEXBot|Bytespider) 1;
|
||||
~*(DecompilationBot|Amazonbot|Barkrowler|SeznamBot) 1;
|
||||
}
|
||||
'';
|
||||
virtualHosts = {
|
||||
"knazarov.com" = {
|
||||
enableACME = true;
|
||||
|
@ -56,11 +63,25 @@
|
|||
add_header "Access-Control-Allow-Origin" *;
|
||||
'';
|
||||
};
|
||||
locations."/" = {
|
||||
extraConfig = ''
|
||||
if ($limit_bots = 1) {
|
||||
return 403;
|
||||
}
|
||||
'';
|
||||
};
|
||||
};
|
||||
"vmatveeva.com" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
root = "${pkgs.vmatveevacom}/srv/vmatveeva.com";
|
||||
locations."/" = {
|
||||
extraConfig = ''
|
||||
if ($limit_bots = 1) {
|
||||
return 403;
|
||||
}
|
||||
'';
|
||||
};
|
||||
};
|
||||
"matrix.knazarov.com" = {
|
||||
enableACME = true;
|
||||
|
|
Loading…
Reference in a new issue