forked from I2P_Developers/i2p.i2p
34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||
|
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">
|
||
|
|
||
|
<!--
|
||
|
Configure a custom context for the eepsite.
|
||
|
|
||
|
* CGI Servlet.
|
||
|
*
|
||
|
* The cgi bin directory can be set with the "cgibinResourceBase" init parameter
|
||
|
* or it will default to the resource base of the context.
|
||
|
*
|
||
|
* The "commandPrefix" init parameter may be used to set a prefix to all
|
||
|
* commands passed to exec. This can be used on systems that need assistance to
|
||
|
* execute a particular file type. For example on windows this can be set to
|
||
|
* "perl" so that perl scripts are executed.
|
||
|
*
|
||
|
* The "Path" init param is passed to the exec environment as PATH. Note: Must
|
||
|
* be run unpacked somewhere in the filesystem.
|
||
|
*
|
||
|
* Any initParameter that starts with ENV_ is used to set an environment
|
||
|
* variable with the name stripped of the leading ENV_ and using the init
|
||
|
* parameter value.
|
||
|
-->
|
||
|
|
||
|
<Configure class="org.mortbay.jetty.handler.ContextHandler">
|
||
|
<Set name="contextPath">/cgi-bin</Set>
|
||
|
<Set name="handler">
|
||
|
<New class="org.mortbay.servlet.CGI">
|
||
|
<Set name="cgibinResourceBase">./eepsite/cgi-bin/</Set>
|
||
|
</New>
|
||
|
</Set>
|
||
|
</Configure>
|
||
|
|