Dateiverwaltung für die WebBox
ulrich
2017-02-14 c7c5020d1ad7e4fc39c7ae08db4afe4cf2956c0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <description>Dateiverwaltung fuer die WebBox</description>
    <display-name>file-cms</display-name>
    <context-param>
        <param-name>fileBase</param-name>
        <param-value>../../../daten/</param-value>
    </context-param>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
</web-app>