From 5e27955194872e7d8bb372863108cb4d1bde52d8 Mon Sep 17 00:00:00 2001 From: Xavier Moffett Date: Mon, 24 Feb 2025 17:32:56 -0500 Subject: [PATCH] Reduce verbosity of error messages, with addition of 500 and 429 pages - Reduce verbosity of error messages in existing error pages with a short description of the error which occurred, followed by a bullet point list of probable causes. - Addition of HTTP Error 500 and 429 pages. - Add .gitignore file --- .gitignore | 3 +++ input/error/403.html | 17 ++++++++++++----- input/error/404.html | 7 +++++++ input/error/429.html | 17 +++++++++++++++++ input/error/500.html | 16 ++++++++++++++++ input/error/502.html | 15 ++++++++++++--- input/error/504.html | 15 ++++++++++++--- 7 files changed, 79 insertions(+), 11 deletions(-) create mode 100644 .gitignore create mode 100644 input/error/429.html create mode 100644 input/error/500.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6dfffe4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/output +/suo +/*.sh diff --git a/input/error/403.html b/input/error/403.html index 6da0a5b..a610ad4 100644 --- a/input/error/403.html +++ b/input/error/403.html @@ -1,10 +1,17 @@ -[//]: # "Title: Access unauthorised" +[//]: # "Title: Access Unauthorised" [//]: # "Summary: Access to this resource has been prohibited."

Access Unauthorised

-

Access to this resource has been prohibited, because either - you have insufficient permissions to access this resource; or - the ip address you're connecting from has been prohibited - access to this server.

+

Access to this resource has been prohibited.

+ +

There could be a few reasons for this:

+ + + +

If you believe this to be in error, e-mail .

diff --git a/input/error/404.html b/input/error/404.html index ac7780c..b8ec695 100644 --- a/input/error/404.html +++ b/input/error/404.html @@ -4,4 +4,11 @@

Not Found

The resource requested not found on this server.

+ +

There could be a few reasons for this:

+ +
diff --git a/input/error/429.html b/input/error/429.html new file mode 100644 index 0000000..7b3d53f --- /dev/null +++ b/input/error/429.html @@ -0,0 +1,17 @@ +[//]: # "Title: Too Many Reqests" +[//]: # "Summary: Access to this resource has been throttled." + +
+

Too Many Requests

+

Access to this resource has been throttled.

+ +

There could be a few reasons for this:

+ + + +

Please try again later.

+
diff --git a/input/error/500.html b/input/error/500.html new file mode 100644 index 0000000..9abe973 --- /dev/null +++ b/input/error/500.html @@ -0,0 +1,16 @@ +[//]: # "Title: Internal Server Error" +[//]: # "Summary: An internal server error has occurred." + +
+

Internal Server Error

+

An internal server error has occurred.

+ +

There could be a few reasons for this:

+ + + +

Please try again later, or check here for further information.

+
diff --git a/input/error/502.html b/input/error/502.html index 46c27ab..4dca978 100644 --- a/input/error/502.html +++ b/input/error/502.html @@ -1,8 +1,17 @@ [//]: # "Title: Bad Gateway" [//]: # "Summary: The upstream resource is unavailable." -
+

Bad Gateway

-

The upstream resource is unavailable.
- Please try again later, or check here for further information.

+

The upstream resource is unavailable.

+ +

There could be a few reasons for this:

+ +
    +
  • Maintenance of this resource is occurring;
  • +
  • The upstream resource is unresponsive, or;
  • +
  • The upstream service is simply not available.
  • +
+ +

Please try again later, or check here for further information.

diff --git a/input/error/504.html b/input/error/504.html index 98b81e9..36fa84b 100644 --- a/input/error/504.html +++ b/input/error/504.html @@ -1,8 +1,17 @@ [//]: # "Title: Gateway Timeout" [//]: # "Summary: The upstream resource is unavailable." -
+

Gateway Timeout

-

The upstream resource is unavailable.
- Please try again later, or check here for further information.

+

The upstream resource is unavailable.

+ +

There could be a few reasons for this:

+ +
    +
  • Maintenance of this resource is occurring;
  • +
  • The upstream resource is unresponsive, or;
  • +
  • The upstream service is simply not available.
  • +
+ +

Please try again later, or check here for further information.