<div dir="ltr">Thank you very much. It is working :)</div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Nov 3, 2016 at 9:18 PM, Maxim Dounin <span dir="ltr"><<a href="mailto:mdounin@mdounin.ru" target="_blank">mdounin@mdounin.ru</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello!<br>
<span class=""><br>
On Thu, Nov 03, 2016 at 02:05:55PM +0800, Tseveendorj Ochirlantuu wrote:<br>
<br>
> Hello,<br>
><br>
> I need to use geoip module for allow specific region access to my website.<br>
> But blocked users should see the error_page. Users are blocked and cannot<br>
> see custom error_page.<br>
><br>
> I don't want to see error_page from other domain. I need to except only<br>
> error page which is not applied to geoip block.<br>
<br>
</span>Try something like this:<br>
<br>
    server {<br>
        listen 80;<br>
<br>
        error_page 403 /403.html;<br>
<br>
        location / {<br>
            if ($blocked) {<br>
                return 403;<br>
            }<br>
<br>
            ...<br>
        }<br>
<br>
        location = /403.html {<br>
            # no geoip restrictions here<br>
        }<br>
    }<br>
<br>
With such a configuration GeoIP-based restrictions are only<br>
applied in "location /", but doesn't affect requests to /403.html.<br>
That is, nginx will be able to return the error page correctly.<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Maxim Dounin<br>
<a href="http://nginx.org/" rel="noreferrer" target="_blank">http://nginx.org/</a><br>
<br>
______________________________<wbr>_________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" rel="noreferrer" target="_blank">http://mailman.nginx.org/<wbr>mailman/listinfo/nginx</a><br>
</font></span></blockquote></div><br></div>