web/WEB-INF/web.xml

Sun, 01 Apr 2018 18:25:31 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 01 Apr 2018 18:25:31 +0200
changeset 22
5a91fb7067af
parent 18
a94b172c3a93
permissions
-rw-r--r--

minor changes to logging output

universe@1 1 <?xml version="1.0" encoding="UTF-8"?>
universe@1 2 <web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
universe@1 3 <session-config>
universe@1 4 <session-timeout>
universe@1 5 30
universe@1 6 </session-timeout>
universe@1 7 </session-config>
universe@13 8 <context-param>
universe@13 9 <param-name>available-languages</param-name>
universe@13 10 <param-value>en,de</param-value>
universe@13 11 </context-param>
universe@18 12 <error-page>
universe@18 13 <error-code>404</error-code>
universe@18 14 <location>/error/404</location>
universe@18 15 </error-page>
universe@18 16 <error-page>
universe@18 17 <error-code>403</error-code>
universe@18 18 <location>/error/403</location>
universe@18 19 </error-page>
universe@18 20 <error-page>
universe@18 21 <error-code>500</error-code>
universe@18 22 <location>/error/500</location>
universe@18 23 </error-page>
universe@1 24 </web-app>

mercurial