February 2018
Beginner to intermediate
348 pages
9h 40m
English
If you decide to use allow and deny directives to allow or deny access, respectively, to a resource on your server, clients who are being denied access will usually fall back on a 403 Forbidden error page. You carefully set up a custom, user-friendly 403 error page for your clients to understand why they are denied access. Unfortunately, you cannot get that custom page to work, and clients still get the default Nginx 403 error page:
server {
[...]
allow 192.168.0.0/16;
deny all;
error_page 403 /error403.html;
}
The problem is simple: Nginx also denies access to your custom 403 error page! In such a case, you need to override the access rules in a location block specifically matching your page. You can ...
Read now
Unlock full access