nginx-install/nginxsnippets/custom-errors.conf

34 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

2024-10-13 00:56:32 +02:00
error_page 400 /custom_400.html;
location = /custom_400.html { root /etc/nginx/nginxsnippets/errorpages; }
location = /custom_400.png { root /etc/nginx/nginxsnippets/errorpages; }
error_page 401 /custom_401.html;
location = /custom_401.html { root /etc/nginx/nginxsnippets/errorpages; }
location = /custom_401.png { root /etc/nginx/nginxsnippets/errorpages; }
error_page 403 /custom_403.html;
location = /custom_403.html { root /etc/nginx/nginxsnippets/errorpages; }
location = /custom_403.png { root /etc/nginx/nginxsnippets/errorpages; }
error_page 404 /custom_404.html;
location = /custom_404.html { root /etc/nginx/nginxsnippets/errorpages; }
location = /custom_404.png { root /etc/nginx/nginxsnippets/errorpages; }
error_page 500 /custom_500.html;
location = /custom_500.html { root /etc/nginx/nginxsnippets/errorpages; }
location = /custom_500.png { root /etc/nginx/nginxsnippets/errorpages; }
error_page 502 /custom_502.html;
location = /custom_502.html { root /etc/nginx/nginxsnippets/errorpages; }
location = /custom_502.png { root /etc/nginx/nginxsnippets/errorpages; }
error_page 503 /custom_503.html;
location = /custom_503.html { root /etc/nginx/nginxsnippets/errorpages; }
location = /custom_503.png { root /etc/nginx/nginxsnippets/errorpages; }
error_page 504 /custom_504.html;
location = /custom_504.html { root /etc/nginx/nginxsnippets/errorpages; }
location = /custom_504.png { root /etc/nginx/nginxsnippets/errorpages; }
location = /custom_error.css { root /etc/nginx/nginxsnippets/errorpages; }