src/main/webapp/WEB-INF/web.xml

Sat, 06 Jan 2024 20:32:29 +0100

author
Mike Becker <universe@uap-core.de>
date
Sat, 06 Jan 2024 20:32:29 +0100
changeset 299
238de141d189
parent 279
d73537b925af
permissions
-rw-r--r--

merge upstream commit

     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
     3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     4          xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/web-app_6_0.xsd"
     5          version="6.0">
     6     <session-config>
     7         <session-timeout>
     8             30
     9         </session-timeout>
    10     </session-config>
    11     <context-param>
    12         <param-name>available-languages</param-name>
    13         <param-value>en,de</param-value>
    14     </context-param>
    15     <context-param>
    16         <param-name>hg-binary</param-name>
    17         <param-value>/usr/bin/hg</param-value>
    18     </context-param>
    19     <resource-ref>
    20         <description>Application Database</description>
    21         <res-ref-name>jdbc/lightpit/app</res-ref-name>
    22         <res-type>javax.sql.DataSource</res-type>
    23         <res-auth>Container</res-auth>
    24         <lookup-name>java:/jdbc/lightpit/app</lookup-name>
    25     </resource-ref>
    26     <error-page>
    27         <location>/error/generic</location>
    28     </error-page>
    29 </web-app>

mercurial