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"> |
9bee65
|
3 |
<description>Startseite</description> |
U |
4 |
<display-name>Startseite</display-name> |
ea4c0c
|
5 |
<session-config> |
U |
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> |