From 77ee769d5e20a0aabecedb14656b9f4eba7c9417 Mon Sep 17 00:00:00 2001 From: Michael Schiemer Date: Sat, 24 May 2025 07:07:38 +0200 Subject: [PATCH] chore: add custom error pages (403, 404, 50x) in public/errors --- public/errors/403.html | 8 ++++++++ public/errors/404.html | 8 ++++++++ public/errors/50x.html | 8 ++++++++ 3 files changed, 24 insertions(+) create mode 100644 public/errors/403.html create mode 100644 public/errors/404.html create mode 100644 public/errors/50x.html diff --git a/public/errors/403.html b/public/errors/403.html new file mode 100644 index 00000000..cababeaf --- /dev/null +++ b/public/errors/403.html @@ -0,0 +1,8 @@ + + + +403 – Zugriff verweigert + +

Fehlende Berechtigung.

+ + diff --git a/public/errors/404.html b/public/errors/404.html new file mode 100644 index 00000000..0af5e9b7 --- /dev/null +++ b/public/errors/404.html @@ -0,0 +1,8 @@ + + + +404 – Seite nicht gefunden + +

Diese Seite existiert nicht.

+ + diff --git a/public/errors/50x.html b/public/errors/50x.html new file mode 100644 index 00000000..8ca34d53 --- /dev/null +++ b/public/errors/50x.html @@ -0,0 +1,8 @@ + + + +Serverfehler + +

Der Server funktioniert nicht.

+ +