cvs commit: jakarta-tomcat-connectors/jk/xdocs/install apache2.xml

2004-11-22 Thread jfclere
jfclere 2004/11/22 09:36:03

  Modified:jk/xdocs/install apache2.xml
  Log:
  EAPI is only for Apache-1.3.
  
  Revision  ChangesPath
  1.2   +0 -5  jakarta-tomcat-connectors/jk/xdocs/install/apache2.xml
  
  Index: apache2.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/install/apache2.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- apache2.xml   18 Nov 2004 18:31:37 -  1.1
  +++ apache2.xml   22 Nov 2004 17:36:03 -  1.2
  @@ -82,11 +82,6 @@
   DIR is something like: /home/apache/apache_1.3.33
   It builds a static Apache module.
 
  -  
  -  This parameter is needed when using Apache-1.3 and mod_ssl, otherwise 
you will get the error message:
  -"this module might crash under EAPI!" when loading mod_jk.so in httpd.
  -Not needed when --with-apxs has been used.
  -  
   
   
   JNI related parameters :
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-connectors/jk/xdocs/install apache2.xml

2004-11-29 Thread mturk
mturk   2004/11/29 23:35:37

  Modified:jk/xdocs changelog.xml faq.xml index.xml
   jk/xdocs/config apache.xml
   jk/xdocs/install apache2.xml
  Log:
  Update docs with latest changes to source.
  
  Revision  ChangesPath
  1.2   +30 -3 jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- changelog.xml 25 Nov 2004 10:10:26 -  1.1
  +++ changelog.xml 30 Nov 2004 07:35:37 -  1.2
  @@ -22,21 +22,48 @@
 
   
   
  -
  +
 
 
   
 
  +  Added new property named recover_time that can be used to change the
  +  default 60 second recover time. (mturk)

  +  
  +  
  +  Added custom retries for worker, so we don't depend on default setting.
  +  If set to a number grater then 3, it will sleep for 100ms on retry 
greater
  +  then 3 and then try again. (mturk)
  +  
  +  
  +  Added JkWorkerProperty directive that enables omiting 
workers.properties file.

  +  For example: JkWorkerProperty worker.ajp13a.port=8009. (mturk)
  +  
  +  
  +  Check all JSESSIONID cookies for a valid jvmRoute. If you have 
multiple Tomcats
  +  with overlapping domains, then you can get multiple cookies without a 
defined order.
  +  This will route correctly as long as the different domains don't have 
any
  +  Tomcats in common. (billbarker)
  +  
  +  
  +  Added JkUnMount directive for negative mappings that works as opposite 
to JkMount directives.
  +  It is used for blocking of particular URL or content type. (mturk)
  +  
  +  
  +  Added wildchar match uri mappings. One can now use JkMount to
  +  map /app/*/servlet/* or /app?/*/*.jsp. (mturk)  
  +  
  +  
 Rewrite the logging by adding Trace options. (mturk)
 
 
 Added socket_timeout property that sets the timeout
 for the socket itself. (mturk)
 
  -  
  +  
 Changed socket_timeout property to recycle_timeout. This better
 explains what the directive actually does. (mturk)
  -  
  +  
 
   Changed the load balancer algorithm.
   The idea behind this new scheduler is the following:

  
  
  
  1.12  +3 -2  jakarta-tomcat-connectors/jk/xdocs/faq.xml
  
  Index: faq.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/faq.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- faq.xml   18 Nov 2004 18:27:48 -  1.11
  +++ faq.xml   30 Nov 2004 07:35:37 -  1.12
  @@ -66,9 +66,10 @@
   
   
   
  +
   
   JK is a project covering web-servers to Tomcat connectors,
  -whereas mod_jk is the Apache module 
developped in JK.
  +whereas mod_jk is the Apache module 
developped in JK.
   
   
   
  
  
  
  1.24  +6 -0  jakarta-tomcat-connectors/jk/xdocs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/index.xml,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- index.xml 29 Nov 2004 10:51:03 -  1.23
  +++ index.xml 30 Nov 2004 07:35:37 -  1.24
  @@ -28,6 +28,12 @@
   
   
   
  +30 November 2004 - 
JK-1.2.7-beta released
  +The Apache Jakarta Tomcat team is proud to announce the immediate 
availability

  +of Jakarta Tomcat Connectors 1.2.7-beta. The release contains a significant 
number

  +of bug fixes and new features. 

  +
  +
   15 November 2004 - JK2 is 
officially unsupported!
   JK2 has been put in maintainer mode and no further development will take 
place.
   The reason for shutting down JK2 development was the lack of developers 
interest.
  
  
  
  1.2   +19 -7 jakarta-tomcat-connectors/jk/xdocs/config/apache.xml
  
  Index: apache.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/config/apache.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- apache.xml18 Nov 2004 18:28:54 -  1.1
  +++ apache.xml30 Nov 2004 07:35:37 -  1.2
  @@ -28,12 +28,13 @@
   
   Full or server relative path to the Jakarta Tomcat Connector module log file
   
  -
  -Automatic mount points to a Tomcat worker
  -
   
   A mount point from a context to a Tomcat worker
   
  +
  +A no mount point from a context to a Tomcat worker
  +This directive is available in jk1.2.7 version and later.
  +
   
   Should the base server mounts be copied to the virtual server.
   
  @@ -324,14 +325,12 @@
   If you have creat