I’m not seeing a 403. I have all countries except US and Canada locked out from the web server. Can you please VPN to a US or Canada IP and test again. I don’t think 403 is the issue. My web host provided me with the following engine xblock
deny redacted IP;
deny redacted IP;
deny redacted IP;
deny redacted IP;
allow all;
#if ($geoip_country_code ~* (RU)) {
#return 403;
#}
#4612622
if ($geoip_country_code !~* (US|CA)) {
return 403;
}
Thanks so much. I need to learn more about CSS