si, pero necesito bloquearlo como te indique, es un sitio php simple
con .htaccess
Ejemplos:
The following will deny from China, North Korea, South Korea
GeoIPEnable On
# Put countries to deny here
SetEnvIf GEOIP_COUNTRY_CODE CN DenyCountry
SetEnvIf GEOIP_COUNTRY_CODE KR DenyCountry
SetEnvIf GEOIP_COUNTRY_CODE KP DenyCountry
SetEnvIf GEOIP_COUNTRY_CODE <Country Code> DenyCountry
Allow from all
Deny from env=DenyCountry
Allow Countries using GeoIP and .htaccess
The following will allow only from US, Canada and Mexico
GeoIPEnable On
# Put countries to allow here
SetEnvIf GEOIP_COUNTRY_CODE US AllowCountry
SetEnvIf GEOIP_COUNTRY_CODE CA AllowCountry
SetEnvIf GEOIP_COUNTRY_CODE MX AllowCountry
Deny from all
Allow from env=AllowCountry