From c636ce1a66d2d7a59d26aa8102e5faa8d927b17c Mon Sep 17 00:00:00 2001
From: Nigel Reed <nigel@nigelreed.net>
Date: Thu, 24 Apr 2025 14:10:49 -0500
Subject: [PATCH] Add 429 error message page If the user requests too many
 pages in too short of a time then the webserver throws an error because it
 doesn't have a 429 error page. Maybe there should be a generic error if
 there's no existing page.

---
 webv4/root/error/429.html | 8 ++++++++
 1 file changed, 8 insertions(+)
 create mode 100644 webv4/root/error/429.html

diff --git a/webv4/root/error/429.html b/webv4/root/error/429.html
new file mode 100644
index 0000000000..023a10574a
--- /dev/null
+++ b/webv4/root/error/429.html
@@ -0,0 +1,8 @@
+<HTML>
+<HEAD>
+<TITLE>Too Many Requests</TITLE>
+</HEAD>
+<BODY>
+You made too many requests in a short period of time.
+</BODY>
+</HTML>
-- 
GitLab