Minimalistisches CATALINA_BASE
.
ulrich
2019-12-07 c81724d9a871f360c102a90de1bad9cd556ec0ca
commit | author | age
ea4c0c 1 <?xml version="1.0" encoding="UTF-8"?>
U 2 <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
3   <description>WebBox</description>
4   <display-name>WebBox</display-name>
5   <session-config>
6     <session-timeout>
7       30
8     </session-timeout>
9   </session-config>
c81724 10
U 11   <!-- Willkommensseiten -->
ea4c0c 12   <welcome-file-list>
U 13     <welcome-file>index.html</welcome-file>
14   </welcome-file-list>
c81724 15
U 16   <!-- Fehlerseiten -->
17   <error-page>
18     <exception-type>java.lang.Throwable</exception-type>
19     <location>/fehler.jsp</location>
20   </error-page>
21   <error-page>
22     <error-code>403</error-code>
23     <location>/nicht-erlaubt.html</location>
24   </error-page>
ea4c0c 25   <error-page>
U 26     <error-code>404</error-code>
27     <location>/fehler.jsp</location>
28   </error-page>
c81724 29   <error-page>
U 30     <error-code>500</error-code>
31     <location>/fehler.jsp</location>
32   </error-page>
ea4c0c 33 </web-app>