nginx-errors
nginx-errors copied to clipboard
A set of custom minimalist 4xx and 5xx error pages for Nginx.
- Load assets from /assets to display error pages correctly when loading from subfolders - Always permit assets, which will make it working e.g. with allow/deny ip addresses - Move...
if auth_basic is enabled, the default 401 error page will be shown, not the styled one. to fix this, the error locations should have `auth_basic off;` nginx-errors.conf: ``` ... location...
In the README.md there is a missing semicolon after the include. ``` server { ... include /usr/share/nginx/html/nginx-errors/nginx-errors.conf; } ```