You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by na...@apache.org on 2003/03/16 01:56:34 UTC

cvs commit: jakarta-tomcat-connectors/jk/xdocs/jk2 configtccom.xml configtc.xml

nacho       2003/03/15 16:56:34

  Modified:    jk/xdocs menu.jk2.idx
               jk/xdocs/jk2 configtc.xml
  Added:       jk/xdocs/jk2 configtccom.xml
  Log:
  * Added all the remaning components and properties for jk2.properties cofngi file,  most of them not commentted..
  * Converted the section abput jk2.p to the same format of wk2.p
  * Separated jk2.p components to his own xml file, added to the index.
  
  Revision  Changes    Path
  1.4       +2 -1      jakarta-tomcat-connectors/jk/xdocs/menu.jk2.idx
  
  Index: menu.jk2.idx
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/menu.jk2.idx,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- menu.jk2.idx	8 Oct 2002 17:57:07 -0000	1.3
  +++ menu.jk2.idx	16 Mar 2003 00:56:33 -0000	1.4
  @@ -1,9 +1,9 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
   
   <section name="JK2">
  -</section>
   <section name="Configuration in the Tomcat">
       <document href="jk2/configtc.xml"/>
  +    <document href="jk2/configtccom.xml"/>
       <document href="jk2/configtcex.xml"/>
   </section>
   <section name="Configuration in the Web Server">
  @@ -16,4 +16,5 @@
   </section>
   <section name="Howto">
       <document href="jk2/confighowto.xml"/>
  +</section>
   </section>
  
  
  
  1.5       +35 -139   jakarta-tomcat-connectors/jk/xdocs/jk2/configtc.xml
  
  Index: configtc.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/jk2/configtc.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- configtc.xml	3 Oct 2002 15:34:10 -0000	1.4
  +++ configtc.xml	16 Mar 2003 00:56:34 -0000	1.5
  @@ -1,146 +1,42 @@
   <?xml version="1.0"?>
   <document>
  -<properties>
  -<title>Configuration options</title>
  -<author email="jfrederic.clere@fujitsu-siemens.com">Jean-Frederic Clere</author>
  -<date>$Date$</date>
  -</properties>
  -
  -<section name="Intro">
  -<p>
  +	<properties>
  +		<title>Configuration options</title>
  +		<author email="jfrederic.clere@fujitsu-siemens.com">Jean-Frederic Clere</author>
  +		<date>$Date$</date>
  +	</properties>
  +	<section name="Intro">
  +		<p>
     This document describes the configuration file used by mod_jk2 on the
     Tomcat site. Its default name is ${jkHome}/conf/jk2.properties,
     where ${jkHome} is the well known ${catalina.base} property.
   </p>
  -</section>
  -
  -<section name="Config options">
  -<p>
  -<table>
  - 
  -  <tr>
  -  <th>Property name</th>
  -  <th>Default</th>
  -  <th>Description</th>
  -  </tr>
  -
  -  <tr>
  -  <td>handler.list</td>
  -  <td>request,container,channelSocket</td>
  -  <td>Handlers to load.</td>
  -  </tr>
  -
  -  <tr>
  -  <td>class.myhandler</td>
  -  <td>No default value</td>
  -  <td>Define the class of the handler myhandler.</td>
  -  </tr>
  -
  -  <tr>
  -  <th colspan="2">apr</th>
  -  <td>APR descriptor</td>
  -  </tr>
  -
  -  <tr>
  -  <td>NativeSo</td>
  -  <td>jkjni</td>
  -  <td>
  -    Location of the jkjni dynamic library.
  -    It is searched in java.library.path but a absolute path can be specified.
  -  </td>
  -  </tr>
  -  <tr>
  -  <td>jniModeSo</td>
  -  <td>inprocess</td>
  -  <td>
  -    If set to "inprocess" the jk2 will regiter native library functions by itself.
  -	If not then it has to be the absolute path of the jkjni dynamic library.
  -  </td>
  -  </tr>
  -
  -  <tr>
  -  <th colspan="2">channelSocket</th>
  -  <td>A communication transport from a remote Web Server.</td>
  -  </tr>
  -
  -  <tr>
  -  <td>port</td>
  -  <td>8009</td>
  -  <td>First port where Tomcat is listening</td>
  -  </tr>
  -
  -  <tr>
  -  <td>address</td>
  -  <td>127.0.0.1</td>
  -  <td>Local address where Tomcat is listening.</td>
  -  </tr>
  -
  -  <tr>
  -  <td>maxPort</td>
  -  <td>port+10</td>
  -  <td>Max port used to listen.</td>
  -  </tr>
  -
  -  <tr>
  -  <th colspan="2">channelUnix</th>
  -  <td>A AF_UNIX socket communication transport from a local Web Server.</td>
  -  </tr>
  -
  -  <tr>
  -  <td>file</td>
  -  <td>No default value</td>
  -  <td>
  -    Name of the "file" associate with the socket.
  -    That must be absolut path name.
  -  </td>
  -  </tr>
  -
  -  <tr>
  -  <th colspan="2">channelJni</th>
  -  <td>A in Web Server process communication.</td>
  -  </tr>
  -
  -  <tr>
  -  <th colspan="2">mx</th>
  -  <td>mx4j adapter.</td>
  -  </tr>
  -
  -  <tr>
  -  <td>port</td>
  -  <td>-1 (Disabled)</td>
  -  <td>Port Number.</td>
  -  </tr>
  -
  -  <tr>
  -  <th colspan="2">shm</th>
  -  <td>shared memory objects handler.</td>
  -  </tr>
  -
  -  <tr>
  -  <td>file</td>
  -  <td>/tmp/shm.file</td>
  -  <td>Shared memory file.</td>
  -  </tr>
  -
  -  <tr>
  -  <td>host</td>
  -  <td>localhost</td>
  -  <td>Host name.</td>
  -  </tr>
  -
  -  <tr>
  -  <td>port</td>
  -  <td>8009</td>
  -  <td>Port number.</td>
  -  </tr>
  -
  -  <tr>
  -  <td>unixSocket</td>
  -  <td>No default value</td>
  -  <td>Unix socket where tomcat is listening.</td>
  -  </tr>
  -
  -</table>
  -</p>
  -</section>
  +	</section>
  +	<section name="Config File Format">
  +	<p> settings are specified in the following format:
  +	<source>
  +	handler.propertie=value
  +	</source>
  +	</p></section>
  +	<section name="Generic properties">
  +		<p>
  +			<table>
  +				<tr>
  +					<th>Property name</th>
  +					<th>Default</th>
  +					<th>Description</th>
  +				</tr>
  +				<tr>
  +					<td>handler.list</td>
  +					<td>request,container,channelSocket</td>
  +					<td>Handlers to load.</td>
  +				</tr>
  +				<tr>
  +					<td>class.myhandler</td>
  +					<td>No default value</td>
  +					<td>Define the class of the handler myhandler.</td>
  +				</tr>
  +			</table>
  +		</p>
  +	</section>
   </document>
  
  
  
  1.1                  jakarta-tomcat-connectors/jk/xdocs/jk2/configtccom.xml
  
  Index: configtccom.xml
  ===================================================================
  <?xml version="1.0"?>
  <document>
  	<properties>
  		<title>Coyote/JK2 Handlers</title>
  		<author email="jfrederic.clere@fujitsu-siemens.com">Jean-Frederic Clere</author>
  		<date>$Date: 2003/03/16 00:56:34 $</date>
  	</properties>
  	<section name="apr">
  		<p>
  APR descriptor
  </p>
  		<p>
  			<table>
  				<tr>
  					<th>Property name</th>
  					<th>Default</th>
  					<th>Description</th>
  				</tr>
  				<tr>
  					<td>NativeSo</td>
  					<td>jkjni</td>
  					<td>
      Location of the jkjni dynamic library.
      It is searched in java.library.path but a absolute path can be specified.
    </td>
  				</tr>
  				<tr>
  					<td>jniModeSo</td>
  					<td>inprocess</td>
  					<td>
      If set to "inprocess" the jk2 will regiter native library functions by itself.
  	If not then it has to be the absolute path of the jkjni dynamic library.
    </td>
  				</tr>
  				<tr>
  					<td>baseDir</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>aprHome</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>soExt</td>
  					<td></td>
  					<td></td>
  				</tr>
  			</table>
  		</p>
  	</section>
  	<section name="channelSocket">
  		<p>
  					A communication transport from a remote Web Server.
  </p>
  		<p>
  			<table>
  				<tr>
  					<th>Property name</th>
  					<th>Default</th>
  					<th>Description</th>
  				</tr>
  				<tr>
  					<td>port</td>
  					<td>8009</td>
  					<td>First port where Tomcat is listening</td>
  				</tr>
  				<tr>
  					<td>address</td>
  					<td>127.0.0.1</td>
  					<td>Local address where Tomcat is listening.</td>
  				</tr>
  				<tr>
  					<td>maxPort</td>
  					<td>port+10</td>
  					<td>Max port used to listen.</td>
  				</tr>
  				<tr>
  					<td>maxThreads</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>backLog</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>tcpNoDelay</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>soTimeout</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>soLinger</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>serverTimeout</td>
  					<td></td>
  					<td></td>
  				</tr>
  			</table>
  		</p>
  	</section>
  	<section name="channelUnix">
  		<p>	A AF_UNIX socket communication transport from a local Web Server.</p>
  		<p>
  			<table>
  				<tr>
  					<th>Property name</th>
  					<th>Default</th>
  					<th>Description</th>
  				</tr>
  				<tr>
  					<td>file</td>
  					<td>No default value</td>
  					<td>
      Name of the "file" associate with the socket.
      That must be absolut path name.
    </td>
  				</tr>
  			</table>
  		</p>
  	</section>
  	<section name="channelJni">
  		<p>A in Web Server process communication.</p>
  		<p>
  			<table>
  				<tr>
  					<th>Property name</th>
  					<th>Default</th>
  					<th>Description</th>
  				</tr>
  			</table>
  		</p>
  	</section>
  	<section name="mx">
  		<p>mx4j adapter.</p>
  		<p>
  			<table>
  				<tr>
  					<th>Property name</th>
  					<th>Default</th>
  					<th>Description</th>
  				</tr>
  				<tr>
  					<td>port</td>
  					<td>-1 (Disabled)</td>
  					<td>Port Number.</td>
  				</tr>
  			</table>
  		</p>
  	</section>
  	<section name="shm">
  		<p>				shared memory objects handler.</p>
  		<p>
  			<table>
  				<tr>
  					<th>Property name</th>
  					<th>Default</th>
  					<th>Description</th>
  				</tr>
  				<tr>
  					<td>file</td>
  					<td>/tmp/shm.file</td>
  					<td>Shared memory file.</td>
  				</tr>
  				<tr>
  					<td>host</td>
  					<td>localhost</td>
  					<td>Host name.</td>
  				</tr>
  				<tr>
  					<td>port</td>
  					<td>8009</td>
  					<td>Port number.</td>
  				</tr>
  				<tr>
  					<td>unixSocket</td>
  					<td>No default value</td>
  					<td>Unix socket where tomcat is listening.</td>
  				</tr>
  			</table>
  		</p>
  	</section>
  	<section name="request">
  		<p>Request handler</p>
  		<p>
  			<table>
  				<tr>
  					<th>Property name</th>
  					<th>Default</th>
  					<th>Description</th>
  				</tr>
  				<tr>
  					<td>tomcatAuthentication</td>
  					<td>true</td>
  					<td>the request handler will get the authenticated user from the HTTP server, honoring any auth done there.</td>
  				</tr>
  				<tr>
  					<td>ajpidDir</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>decodedUri</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>secret</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>useSecret</td>
  					<td></td>
  					<td></td>
  				</tr>
  			</table>
  		</p>
  	</section>
  	<section name="modeler">
  		<p>????</p>
  		<p>
  			<table>
  				<tr>
  					<th>Property name</th>
  					<th>Default</th>
  					<th>Description</th>
  				</tr>
  				<tr/>
  			</table>
  		</p>
  	</section>
  	<section name="container">
  		<p>????</p>
  		<p>
  			<table>
  				<tr>
  					<th>Property name</th>
  					<th>Default</th>
  					<th>Description</th>
  				</tr>
  				<tr/>
  			</table>
  		</p>
  	</section>
  	<section name="modjk">
  		<p>????</p>
  		<p>
  			<table>
  				<tr>
  					<th>Property name</th>
  					<th>Default</th>
  					<th>Description</th>
  				</tr>
  				<tr>
  					<td>pass</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>statusPath</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>updateInterval</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>user</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>webServerHost</td>
  					<td></td>
  					<td></td>
  				</tr>
  				<tr>
  					<td>webServerPort</td>
  					<td></td>
  					<td></td>
  				</tr>
  			</table>
  		</p>
  	</section>
  </document>
  
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org