Use correct order of elements.
[demoscenemusic.git] / src / main / webapp / WEB-INF / web.xml.template
1 <?xml version="1.0" encoding="utf-8"?>
2 <web-app>
3
4         <display-name>DemosceneMusic</display-name>
5         <description>Database for all demoscene music</description>
6
7         <context-param>
8                 <description>The directory where the streaming files (MP3, Vorbis, etc.) are stored.</description>
9                 <param-name>storage.streamed</param-name>
10                 <param-value>/var/lib/demoscene-music/streamed</param-value>
11         </context-param>
12
13         <context-param>
14                 <description>The directory where the original files (binaries, SID files, MOD files, etc.) are stored.</description>
15                 <param-name>storage.original</param-name>
16                 <param-value>/var/lib/demoscene-music/original</param-value>
17         </context-param>
18
19         <resource-ref>
20                 <description>DB Connection</description>
21                 <res-ref-name>jdbc/demosceneMusic</res-ref-name>
22                 <res-type>javax.sql.DataSource</res-type>
23                 <res-auth>Container</res-auth>
24         </resource-ref>
25
26 </web-app>