diff options
author | Thomas Lange <code@nerdmind.de> | 2017-11-17 14:27:51 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-11-17 14:27:51 +0100 |
commit | 3e6f67f058392578b93cd09700607252c9e0b071 (patch) | |
tree | b5a4885dbbf5f6b40380409bcec983fb1327e106 /conf-available | |
parent | 712b82576fc052015539053151964573a2261a51 (diff) | |
download | apache-errorpage-3e6f67f058392578b93cd09700607252c9e0b071.tar.gz apache-errorpage-3e6f67f058392578b93cd09700607252c9e0b071.tar.xz apache-errorpage-3e6f67f058392578b93cd09700607252c9e0b071.zip |
The markup has been optimized to use more semantic <p> and <code> elements. In addition, the error page for HTTP status code 502 has been added.
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 26071e6..314e195 100644 --- a/conf-available/errorpage.conf +++ b/conf-available/errorpage.conf @@ -15,6 +15,7 @@ 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/502 /etc/apache2/customization/errorpage/502.shtml Alias /errorpage/503 /etc/apache2/customization/errorpage/503.shtml Alias /errorpage/504 /etc/apache2/customization/errorpage/504.shtml @@ -34,6 +35,7 @@ ErrorDocument 429 /errorpage/429 ErrorDocument 500 /errorpage/500 ErrorDocument 501 /errorpage/501 + ErrorDocument 502 /errorpage/502 ErrorDocument 503 /errorpage/503 ErrorDocument 504 /errorpage/504 |