aboutsummaryrefslogtreecommitdiffstats
path: root/conf-available
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-08-28 08:17:32 +0200
committerThomas Lange <code@nerdmind.de>2017-08-28 08:17:32 +0200
commit43c9b35deb674509203c6991fbdab2fc6594df28 (patch)
tree7ba20650024d4b12eb2811d98fe5abc84583e979 /conf-available
parentab57e162e18ed132d435a09634869d46925cbe2e (diff)
downloadapache-errorpage-43c9b35deb674509203c6991fbdab2fc6594df28.tar.gz
apache-errorpage-43c9b35deb674509203c6991fbdab2fc6594df28.tar.xz
apache-errorpage-43c9b35deb674509203c6991fbdab2fc6594df28.zip
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.
Diffstat (limited to 'conf-available')
-rw-r--r--conf-available/errorpage.conf2
1 files changed, 2 insertions, 0 deletions
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