From c50e7b4298ea3e6562e836d6bc25bc7ebba69714 Mon Sep 17 00:00:00 2001
From: Ulrich <undisclosed>
Date: Thu, 16 Apr 2020 18:06:42 +0000
Subject: [PATCH] SingleSignOn eingeschaltet

---
 readme.md |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/readme.md b/readme.md
index b68bce2..7b1b239 100644
--- a/readme.md
+++ b/readme.md
@@ -31,14 +31,14 @@
 
 Der Inhalt für `http://localhost:8080/` liegt in `CATALINA_BASE/webapps/ROOT`.
 
-### Fehler-Seiten
+### Fehlerseiten
 
 Der Deployment Descriptor des ROOT Context, die Datei `CATALINA_BASE/webapps/ROOT/WEB-INF/web.xml`, enthält u.a. eine Deklaration von Standardfehlerseiten. Das sorgt im Fall eines Fehlers für die Anzeige einer neutralen Seite.
 
 ```
 <error-page>
   <exception-type>java.lang.Throwable</exception-type>
-  <location>/fehler.html</location>
+  <location>/fehler.jsp</location>
 </error-page>
 <error-page>
   <error-code>403</error-code>
@@ -46,10 +46,10 @@
 </error-page>
 <error-page>
   <error-code>404</error-code>
-  <location>/fehler.html</location>
+  <location>/fehler.jsp</location>
 </error-page>
 <error-page>
   <error-code>500</error-code>
-  <location>/fehler.html</location>
+  <location>/fehler.jsp</location>
 </error-page>
 ```

--
Gitblit v1.9.3