diff options
author | Thomas Lange <code@nerdmind.de> | 2017-08-28 08:17:32 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-08-28 08:17:32 +0200 |
commit | 43c9b35deb674509203c6991fbdab2fc6594df28 (patch) | |
tree | 7ba20650024d4b12eb2811d98fe5abc84583e979 /conf-available | |
parent | ab57e162e18ed132d435a09634869d46925cbe2e (diff) | |
download | apache-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.conf | 2 |
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 |