You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Brendan Benke <be...@impulseradio.com> on 2002/08/13 17:30:30 UTC

Engine className for use with Ajp13Connector

this is my server.xml file.  am i using the correct class for the Engine?

<Server port="8005" shutdown="SHUTDOWN" debug="0">

   <DefaultContext reloadable="true"/>

   <Service name="Tomcat-Apache">

     <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
                port="8009" minProcessors="5" maxProcessors="75"
                acceptCount="10" debug="0"/>


     <Engine className="org.apache.catalina.connector.warp.WarpEngine"
      name="192.168.0.1" debug="0">

       <Host name="192.168.0.1" debug="0" appBase="webapps"
unpackWARs="true">

         <Context path="/site" docBase="site" debug="0" privileged="false"
reloadable="true">
             <Loader delegate="true" debug="3"/>
         </Context>

       </Host>

       <Logger className="org.apache.catalina.logger.FileLogger"
               verbosity="4"
               prefix="apache_log." suffix=".txt"
               timestamp="true"/>

       <Realm className="org.apache.catalina.realm.MemoryRealm" />



     </Engine>

   </Service>

 </Server>




--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>