nginx-fancy-pages/nginx.conf
2024-10-23 22:22:40 -04:00

20 lines
534 B
Nginx Configuration File

# To enable the fancy index theme.
location <location> {
fancyindex on;
fancyindex_exact_size off;
fancyindex_localtime on;
fancyindex_header /fancy-pages/HEADER.html;
fancyindex_footer /fancy-pages/FOOTER.html;
}
# To enable custom error pages.
error_page 401 /fancy-pages/error/401.html;
error_page 403 /fancy-pages/error/403.html;
error_page 404 /fancy-pages/error/404.html;
error_page 500 502 503 504 /fancy-pages/error/500.html;
# To disable users from accessing this manually.
location /fancy-pages/error/ {
internal;
}