Merhaba,

https://github.com/leev/ngx_http_geoip2_module

önce bununla nginx i derleyin. Ardından https://dev.maxmind.com/geoip/geolit...olocation-data buradan ücretsiz GeoLite2-ASN.mmdb db sini alabilirsiniz.

Nginx conf içi;

geoip2 /usr/share/GeoIP/GeoLite2-ASN.mmdb {
$geoip2_data_autonomous_system_number autonomous_system_number;
}

web sitesi için olan conf dosyanızın içerisine

map $geoip2_data_autonomous_system_number $site.com.asn {
default yes;
}

server {
location / {
if ($site.com.asn = no) {return 403;}
}

default yes; altına örneğin 42926 no; yazarsanız ASN42926 (radore örnek) engellenir 403 hatası alırlar.