jetty 6.0.0beta9 stripped down

git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@378126 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2006-02-16 00:08:26 +00:00
parent ba78c4fc55
commit 9e67b94b41
12 changed files with 249 additions and 0 deletions

210
example/etc/jetty.xml Executable file
View File

@ -0,0 +1,210 @@
<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">
<!-- =============================================================== -->
<!-- Configure the Jetty Server -->
<!-- =============================================================== -->
<Configure id="Server" class="org.mortbay.jetty.Server">
<!-- =========================================================== -->
<!-- Initialize management framework -->
<!-- =========================================================== -->
<!--
<Call id="MBeanServer" class="javax.management.MBeanServerFactory" name="createMBeanServer">
<Arg>org.mortbay.jetty</Arg>
</Call>
<Get id="Container" name="container"/>
<New class="org.mortbay.management.MBeanContainer">
<Arg><Ref id="MBeanServer" /></Arg>
<Arg><Ref id="Container"/></Arg>
<Set name="managementPort">8985</Set>
<Call name="start" />
</New>
-->
<!-- =========================================================== -->
<!-- Server Thread Pool -->
<!-- =========================================================== -->
<Set name="ThreadPool">
<New class="org.mortbay.thread.BoundedThreadPool">
<Set name="minThreads">10</Set>
<Set name="maxThreads">100</Set>
</New>
</Set>
<!-- =========================================================== -->
<!-- Set connectors -->
<!-- =========================================================== -->
<!-- One of each type! -->
<!-- =========================================================== -->
<Set name="connectors">
<Array type="org.mortbay.jetty.Connector">
<!-- Use this connector if NIO is not available.
-->
<!--
<Item>
<New class="org.mortbay.jetty.bio.SocketConnector">
<Set name="port">8984</Set>
<Set name="maxIdleTime">50000</Set>
</New>
</Item>
-->
<!-- Use this connector for few very active connections.
<Item>
<New class="org.mortbay.jetty.nio.BlockingChannelConnector">
<Set name="port">8983</Set>
</New>
</Item>
-->
<!-- Use this connector for many frequently idle connections
and for threadless continuations.
-->
<Item>
<New class="org.mortbay.jetty.nio.SelectChannelConnector">
<Set name="port">8983</Set>
<Set name="maxIdleTime">30000</Set>
<Set name="Acceptors">10</Set>
</New>
</Item>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- Add a HTTPS SSL listener on port 8443 -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!--
<Item>
<New class="org.mortbay.jetty.security.SslSocketConnector">
<Set name="Port">8443</Set>
<Set name="maxIdleTime">30000</Set>
<Set name="Keystore"><SystemProperty name="jetty.home" default="." />/etc/keystore</Set>
<Set name="Password">OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4</Set>
<Set name="KeyPassword">OBF:1u2u1wml1z7s1z7a1wnl1u2g</Set>
</New>
</Item>
-->
</Array>
</Set>
<!-- =========================================================== -->
<!-- Set handlers -->
<!-- =========================================================== -->
<Set name="handlers">
<Array type="org.mortbay.jetty.Handler">
<!-- ======================================================= -->
<!-- Configure a test web application with web.xml -->
<!-- ======================================================= -->
<!--
<Item>
<New id="testWebAppContext" class="org.mortbay.jetty.webapp.WebAppContext">
<Set name="contextPath">/test</Set>
<Set name="war">./webapps/test</Set>
<Set name="VirtualHosts"><Array type="java.lang.String"></Array></Set>
<Get name="SessionHandler">
<Set name="SessionManager"><New class="org.mortbay.jetty.servlet.HashSessionManager"/></Set>
</Get>
</New>
</Item>
-->
<!-- ======================================================= -->
<!-- Configure a context directly - no XML parser required -->
<!-- ======================================================= -->
<Item>
<New id="javadocContext" class="org.mortbay.jetty.handler.ContextHandler">
<Set name="contextPath">/javadoc</Set>
<Set name="resourceBase">./javadoc</Set>
<Set name="handler">
<New id="javadocServletHandler" class="org.mortbay.jetty.servlet.ServletHandler">
<Set name="servlets">
<Array type="org.mortbay.jetty.servlet.ServletHolder">
<Item>
<New class="org.mortbay.jetty.servlet.ServletHolder">
<Set name="name">Default</Set>
<Set name="className">org.mortbay.jetty.servlet.DefaultServlet</Set>
</New>
</Item>
</Array>
</Set>
<Set name="servletMappings">
<Array type="org.mortbay.jetty.servlet.ServletMapping">
<Item>
<New class="org.mortbay.jetty.servlet.ServletMapping">
<Set name="pathSpec">/</Set>
<Set name="servletName">Default</Set>
</New>
</Item>
</Array>
</Set>
</New>
</Set>
</New>
</Item>
</Array>
</Set>
<!-- =========================================================== -->
<!-- Additional contexts not defined above -->
<!-- =========================================================== -->
<Call class="org.mortbay.jetty.webapp.WebAppContext" name="addWebApplications">
<Arg><Ref id="Server"/></Arg>
<Arg>./webapps</Arg>
<Arg>org/mortbay/jetty/webapp/webdefault.xml</Arg>
<Arg type="boolean">True</Arg>
<Arg type="boolean">True</Arg>
</Call>
<!-- =========================================================== -->
<!-- Configure Realms -->
<!-- =========================================================== -->
<Set name="UserRealms">
<Array type="org.mortbay.jetty.security.UserRealm">
<Item>
<New class="org.mortbay.jetty.security.HashUserRealm">
<Set name="name">Test Realm</Set>
<Set name="config">etc/realm.properties</Set>
</New>
</Item>
</Array>
</Set>
<!-- =========================================================== -->
<!-- Configure Request Log -->
<!-- =========================================================== -->
<!-- uncomment for a request log (and create logs directory)
<Set name="requestLog">
<New id="requestLogImpl" class="org.mortbay.jetty.NCSARequestLog">
<Arg><SystemProperty name="jetty.home" default="."/>/logs/yyyy_mm_dd.request.log</Arg>
<Set name="retainDays">90</Set>
<Set name="append">true</Set>
<Set name="extended">false</Set>
<Set name="LogTimeZone">GMT</Set>
</New>
</Set>
-->
<!-- =========================================================== -->
<!-- Start the server -->
<!-- =========================================================== -->
<Set name="stopAtShutdown">true</Set>
<Call name="start"/>
</Configure>

BIN
example/etc/keystore Executable file

Binary file not shown.

21
example/etc/realm.properties Executable file
View File

@ -0,0 +1,21 @@
#
# This file defines users passwords and roles for a HashUserRealm
#
# The format is
# <username>: <password>[,<rolename> ...]
#
# Passwords may be clear text, obfuscated or checksummed. The class
# org.mortbay.util.Password should be used to generate obfuscated
# passwords or password checksums
#
# If DIGEST Authentication is used, the password must be in a recoverable
# format, either plain text or OBF:.
#
jetty: MD5:164c88b302622e17050af52c89945d44,user
admin: CRYPT:adpexzg3FUZAk,server-administrator,content-administrator,admin
other: OBF:1xmk1w261u9r1w1c1xmq
plain: plain
user: password
# This entry is for digest auth. The credential is a MD5 hash of username:realmname:password
digest: MD5:6e120743ad67abfbc385bc2bb754e297

2
example/lib/jetty.jar Executable file
View File

@ -0,0 +1,2 @@
AnyObjectId[4d22ecbbbd03d82fe7cf6d8bc58d3ab3acd428c4] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[608ed796ca34c5acc14cb3cf3cc4deee4ea86180] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[2a410b4b58737c345c4504b115439c744e1115fe] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[ad70203f6c2f44f8916fb3761b2ac3eaef81c217] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[743d906c1fb08289d868175f7fc119e6eadf6bd5] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[846792e495b7ff2cf1418b46ef255d80c0b9ea0c] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[258bfe24c7399d866f8b62c39c43844826c80c2a] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[d259b6d0f91ccc42f1b8fb34036dce4cd148e860] was removed in git history.
Apache SVN contains full history.

2
example/start.jar Executable file
View File

@ -0,0 +1,2 @@
AnyObjectId[e63666fb8ffc05af9944c99e2a72ddc81ab447b3] was removed in git history.
Apache SVN contains full history.