You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by gr...@apache.org on 2005/12/08 04:35:45 UTC

svn commit: r354958 - in /geronimo/trunk/configs/jetty: project.properties src/plan/plan.xml

Author: gregw
Date: Wed Dec  7 19:35:40 2005
New Revision: 354958

URL: http://svn.apache.org/viewcvs?rev=354958&view=rev
Log:
configure AJP13 listener for Jetty

Modified:
    geronimo/trunk/configs/jetty/project.properties
    geronimo/trunk/configs/jetty/src/plan/plan.xml

Modified: geronimo/trunk/configs/jetty/project.properties
URL: http://svn.apache.org/viewcvs/geronimo/trunk/configs/jetty/project.properties?rev=354958&r1=354957&r2=354958&view=diff
==============================================================================
--- geronimo/trunk/configs/jetty/project.properties (original)
+++ geronimo/trunk/configs/jetty/project.properties Wed Dec  7 19:35:40 2005
@@ -26,6 +26,7 @@
 
 PlanHTTPPort=8080
 PlanHTTPSPort=8443
+PlanAJPPort2=8019
 PlanOpenEJBPort=4201
 PlanServerHostname=localhost
 PlanClientAddresses=127.0.0.1

Modified: geronimo/trunk/configs/jetty/src/plan/plan.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/configs/jetty/src/plan/plan.xml?rev=354958&r1=354957&r2=354958&view=diff
==============================================================================
--- geronimo/trunk/configs/jetty/src/plan/plan.xml (original)
+++ geronimo/trunk/configs/jetty/src/plan/plan.xml Wed Dec  7 19:35:40 2005
@@ -70,6 +70,16 @@
         <attribute name="minThreads">10</attribute>
     </gbean>
 
+    <gbean name="JettyAJP13Connector" class="org.apache.geronimo.jetty.connector.AJP13Connector">
+        <attribute name="host">${PlanServerHostname}</attribute>
+        <attribute name="port">${PlanAJPPort2}</attribute>
+        <reference name="JettyContainer">
+            <name>JettyWebContainer</name>
+        </reference>
+        <attribute name="maxThreads">50</attribute>
+        <attribute name="minThreads">10</attribute>
+    </gbean>
+
     <gbean name="JettySSLConnector" class="org.apache.geronimo.jetty.connector.HTTPSConnector">
         <attribute name="host">${PlanServerHostname}</attribute>
         <attribute name="port">${PlanHTTPSPort}</attribute>