Is there a way to customize the nginx page? Nginx would also denies access to my 403 error page! Can I override the access in the nginx.config with a location block specifically matching the 403 page with this code?
error_page 403 /403.html;
location = /403.html {
root /path/to403pages;
allow all;
Or can I edit the default server Nginx forbidden page?