26 lines
731 B
XML
26 lines
731 B
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE web-app
|
|
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
|
|
"http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
|
|
|
|
<web-app>
|
|
<servlet>
|
|
<servlet-name>org.klomp.snark.web.I2PSnarkServlet</servlet-name>
|
|
<servlet-class>org.klomp.snark.web.I2PSnarkServlet</servlet-class>
|
|
<load-on-startup>1</load-on-startup>
|
|
</servlet>
|
|
|
|
<!-- precompiled servlets -->
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>org.klomp.snark.web.I2PSnarkServlet</servlet-name>
|
|
<url-pattern>/</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<session-config>
|
|
<session-timeout>
|
|
30
|
|
</session-timeout>
|
|
</session-config>
|
|
</web-app>
|