<span style="font-family: Arial; font-size: 13px;">Hi. I'd want to secure some locations with basic GeoIP like this:<br><br>/etc/nginx/sites-enabled/default_server<br><br>upstream error {<br>server localhost:9222;<br>}<br>    server {<br>        root  /var/www/htdocs;<br>        server_name     10.10.10.10;<br>        listen          80;<br>        include /etc/nginx/fastcgi_php;<br>        location / {<br>                index  index.php;<br>        }<br><br>        error_page  403  /403.html;<br>        location = /403.html {<br>                root   /var/www/nginx-default;<br>        }<br><br>        location ^~ /test {<br>               index  index.php;<br><br>        if ($geoip_country_code = AR) {<br>        fastcgi_pass unix:/var/run/www/php.sock;<br>        }<br><br>        if ($geoip_country_code != AR) {<br>        fastcgi_pass error;<br>        return 403;<br>        }<br><br>        fastcgi_index index.php;<br>        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;<br>        include /etc/nginx/fastcgi.conf;<br>   }<br>}<br><br>It's working but images are not displaying. If I switch my location to ^~ /test\.php$ my GeoIP stops working. :D<br><br>Any suggestions?<br>Thanks</span>