From 43c9b35deb674509203c6991fbdab2fc6594df28 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Mon, 28 Aug 2017 08:17:32 +0200 Subject: There are now separate files for header and footer, which simplifies the creation of error messages, since you can now output HTML code directly instead of defining the message into a variable which escapes the containing HTML code. In addition, a new error page for "429 Too Many Requests" has been added and a little change in the stylesheet was made. --- conf-available/errorpage.conf | 2 ++ 1 file changed, 2 insertions(+) (limited to 'conf-available') diff --git a/conf-available/errorpage.conf b/conf-available/errorpage.conf index e52fb3f..26071e6 100644 --- a/conf-available/errorpage.conf +++ b/conf-available/errorpage.conf @@ -12,6 +12,7 @@ Alias /errorpage/413 /etc/apache2/customization/errorpage/413.shtml Alias /errorpage/414 /etc/apache2/customization/errorpage/414.shtml Alias /errorpage/415 /etc/apache2/customization/errorpage/415.shtml + Alias /errorpage/429 /etc/apache2/customization/errorpage/429.shtml Alias /errorpage/500 /etc/apache2/customization/errorpage/500.shtml Alias /errorpage/501 /etc/apache2/customization/errorpage/501.shtml Alias /errorpage/503 /etc/apache2/customization/errorpage/503.shtml @@ -30,6 +31,7 @@ ErrorDocument 413 /errorpage/413 ErrorDocument 414 /errorpage/414 ErrorDocument 415 /errorpage/415 + ErrorDocument 429 /errorpage/429 ErrorDocument 500 /errorpage/500 ErrorDocument 501 /errorpage/501 ErrorDocument 503 /errorpage/503 -- cgit v1.2.3