forked from I2P_Developers/i2p.i2p
24 lines
716 B
XML
24 lines
716 B
XML
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||
|
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
|
||
|
|
||
|
<!--
|
||
|
Configure a custom context for the site.
|
||
|
|
||
|
This context contains only a ServletContextHandler with a default servlet
|
||
|
to serve static html files and images.
|
||
|
-->
|
||
|
|
||
|
<Configure class="org.eclipse.jetty.servlet.ServletContextHandler">
|
||
|
<Set name="contextPath">/</Set>
|
||
|
<Set name="resourceBase">./docroot/</Set>
|
||
|
<Call name="setInitParameter">
|
||
|
<Arg>org.eclipse.jetty.servlet.Default.cacheControl</Arg>
|
||
|
<Arg>max-age=3600,public</Arg>
|
||
|
</Call>
|
||
|
<Call name="addServlet">
|
||
|
<Arg>org.eclipse.jetty.servlet.DefaultServlet</Arg>
|
||
|
<Arg>/</Arg>
|
||
|
</Call>
|
||
|
</Configure>
|
||
|
|