cvs commit: jakarta-tomcat/src/etc server.xml

2004-09-02 Thread billbarker
billbarker2004/09/01 23:18:10

  Modified:src/etc  server.xml
  Log:
  Note that the CoyoteConnector now requires a 1.4 JVM.
  
  Revision  ChangesPath
  1.104 +1 -1  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.103
  retrieving revision 1.104
  diff -u -r1.103 -r1.104
  --- server.xml27 Feb 2004 05:45:47 -  1.103
  +++ server.xml2 Sep 2004 06:18:10 -   1.104
  @@ -201,7 +201,7 @@
 by default report Tomcat Web Server ...
 set an empty string to avoid sending server header 
   --
  -!-- Uncomment this if useing a 1.1 JDK
  +!-- Uncomment this if using a 1.3 or lower JDK
   Http10Connector   port=8080 
   secure=false
   maxThreads=100
  
  
  

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



cvs commit: jakarta-tomcat/src/etc server.xml

2003-10-01 Thread hgomez
hgomez  2003/10/01 02:49:58

  Modified:src/etc  server.xml
  Log:
  More options for Coyote2 connector and notes about gzip
  
  Revision  ChangesPath
  1.101 +18 -6 jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.100
  retrieving revision 1.101
  diff -u -r1.100 -r1.101
  --- server.xml16 Feb 2003 23:21:18 -  1.100
  +++ server.xml1 Oct 2003 09:49:58 -   1.101
  @@ -216,14 +216,26 @@
   
Note: CoyoteConnector supports the same attributes as
  Http10Connector
  -  --
  + --
  +  
   !--
   CoyoteConnector2   port=8081 
  -secure=false
  -maxThreads=100
  -maxSpareThreads=50
  -minSpareThreads=10 /
  - --
  +   maxThreads=150 minSpareThreads=25 maxSpareThreads=75
  +   enableLookups=false redirectPort=8443 acceptCount=100
  +   debug=0 connectionTimeout=2 
  +   disableUploadTimeout=true /
  + --
  +
  + !-- Note : To disable connection timeouts, set connectionTimeout value
  +  to -1 --
  + 
  + !-- Note : To use gzip compression you could set the following 
properties :
  + 
  +compression=on 
  +compressionMinSize=2048 
  +noCompressionUserAgents=gozilla, traviata 
  +compressableMimeType=text/html,text/xml
  + --
   
   !--
JNI connector. It assumes the library is located in 
  
  
  

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



cvs commit: jakarta-tomcat/src/etc server.xml

2003-02-16 Thread larryi
larryi  2003/02/16 15:21:18

  Modified:src/etc  server.xml
  Log:
  Doing MxInterceptor as an add-on.
  
  Revision  ChangesPath
  1.100 +0 -27 jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.99
  retrieving revision 1.100
  diff -u -r1.99 -r1.100
  --- server.xml19 Sep 2002 11:14:30 -  1.99
  +++ server.xml16 Feb 2003 23:21:18 -  1.100
  @@ -69,33 +69,6 @@
   
   Jdk12Interceptor / 
   
  -   !-- Use MxInterceptor to enable JMX monitoring.
  -
  -options are :
  -
  -port : http adaptor will listen to this port
  -
  -If you're using the MX4J HTTP Adaptor, you could also 
  -set host and authentication :
  -
  -host : the MX4J http adaptor will listen to this IP/host
  -
  -authentication: the MX4J http adaptor will use HTTP authentification
  -method which could be (none, basic, digest)
  -
  -user: set the user to be entered when asking for user/password in
  -  HTTP authentification.
  -  
  -password : define the password for HTTP authentification
  -
  -Note, if you're using a JMX console, you don't have to 
  -use the http adaptor
  -
  -MxInterceptor port=8999 authentification=basic 
  -   user=admin password=changeillico/
  -
  - --
  - 
   !-- Non-standard invoker, for backward compat. ( /servlet/* ) --
   InvokerInterceptor / 
   
  
  
  

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




cvs commit: jakarta-tomcat/src/etc server.xml

2002-09-19 Thread hgomez

hgomez  2002/09/19 01:02:27

  Modified:src/etc  server.xml
  Log:
  Add example MXInterceptor (still not enabled by default)
  
  Revision  ChangesPath
  1.98  +28 -0 jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.97
  retrieving revision 1.98
  diff -u -r1.97 -r1.98
  --- server.xml9 Apr 2002 19:43:27 -   1.97
  +++ server.xml19 Sep 2002 08:02:27 -  1.98
  @@ -69,6 +69,34 @@
   
   Jdk12Interceptor / 
   
  +   !-- UnComment the following and comment out the
  +above to enable JMX monitoring.
  +
  +options are :
  +
  +port : http adaptor will listen to this port
  +
  +If you're using the MX4J HTTP Adaptor, you could also 
  +set host and authentication :
  +
  +host : the MX4J http adaptor will listen to this IP/host
  +
  +authentication: the MX4J http adaptor will use HTTP authentification
  +method which could be (none, basic, digest)
  +
  +user: set the user to be entered when asking for user/password in
  +  HTTP authentification.
  +  
  +password : define the password for HTTP authentification
  +
  +Note, if you're using a JMX console, you don't have to 
  +use the http adaptor
  +
  +MXInterceptor port=8999 authentification=basic 
  +   user=admin password=changeillico/
  +
  + --
  + 
   !-- Non-standard invoker, for backward compat. ( /servlet/* ) --
   InvokerInterceptor / 
   
  
  
  

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




cvs commit: jakarta-tomcat/src/etc server.xml

2002-09-19 Thread hgomez

hgomez  2002/09/19 04:14:30

  Modified:src/etc  server.xml
  Log:
  typo, it's MxInterceptor and not MXInterceptor
  
  Revision  ChangesPath
  1.99  +2 -3  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.98
  retrieving revision 1.99
  diff -u -r1.98 -r1.99
  --- server.xml19 Sep 2002 08:02:27 -  1.98
  +++ server.xml19 Sep 2002 11:14:30 -  1.99
  @@ -69,8 +69,7 @@
   
   Jdk12Interceptor / 
   
  -   !-- UnComment the following and comment out the
  -above to enable JMX monitoring.
  +   !-- Use MxInterceptor to enable JMX monitoring.
   
   options are :
   
  @@ -92,7 +91,7 @@
   Note, if you're using a JMX console, you don't have to 
   use the http adaptor
   
  -MXInterceptor port=8999 authentification=basic 
  +MxInterceptor port=8999 authentification=basic 
  user=admin password=changeillico/
   
--
  
  
  

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




Re: cvs commit: jakarta-tomcat/src/etc server.xml

2002-09-19 Thread Bojan Smojver

On Thu, 2002-09-19 at 21:14, [EMAIL PROTECTED] wrote:
  
   -MXInterceptor port=8999 authentification=basic 
   +MxInterceptor port=8999 authentification=basic 
   user=admin password=changeillico/

Shouldn't the above be authentication, not authentification?

Bojan


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




cvs commit: jakarta-tomcat/src/etc server.xml

2002-04-09 Thread costin

costin  02/04/09 12:43:27

  Modified:src/etc  server.xml
  Log:
  Changed to CoyoteInterceptor2.  ( after we are comfortable with it, we'll
  rename it to CoyoteInterceptor )
  
  Added the commented out impl of Coyte-based jk.
  
  Revision  ChangesPath
  1.97  +8 -2  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.96
  retrieving revision 1.97
  diff -u -r1.96 -r1.97
  --- server.xml8 Apr 2002 02:16:40 -   1.96
  +++ server.xml9 Apr 2002 19:43:27 -   1.97
  @@ -218,7 +218,7 @@
  Http10Connector
 --
   !--
  -CoyoteConnector   port=8081 
  +CoyoteConnector2   port=8081 
   secure=false
   maxThreads=100
   maxSpareThreads=50
  @@ -262,10 +262,16 @@
true is the default. 

tomcatAuthentication=false
  +  --

  +Ajp13Connector port=8009 /
   
  +!-- Jk2 support using coyote. Uncomment and comment Ajp13Connector 
 --
  -Ajp13Connector port=8009 /
  +!--
  +CoyoteConnector2 processorClassName=org.apache.jk.server.JkCoyoteHandler 
  +  port=8009 /
  + --
   
 !-- 
  Context definitions can be placed here ( not recommended ) or 
  
  
  

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




cvs commit: jakarta-tomcat/src/etc server.xml modules.xml

2002-04-07 Thread larryi

larryi  02/04/07 19:16:40

  Modified:src/etc  server.xml modules.xml
  Log:
  Include CoyoteConnector in modules.xml and add a disabled
  CoyoteConnector to server.xml.
  
  Revision  ChangesPath
  1.96  +15 -0 jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.95
  retrieving revision 1.96
  diff -u -r1.95 -r1.96
  --- server.xml31 Dec 2001 23:35:47 -  1.95
  +++ server.xml8 Apr 2002 02:16:40 -   1.96
  @@ -211,6 +211,21 @@
   --
   
   !--
  + Uncomment for HTTP 1.1 support using the Coyote adapter and
  + and Http11 processor from jakarta-tomcat-connectors.
  +
  + Note: CoyoteConnector supports the same attributes as
  +   Http10Connector
  +  --
  +!--
  +CoyoteConnector   port=8081 
  +secure=false
  +maxThreads=100
  +maxSpareThreads=50
  +minSpareThreads=10 /
  + --
  +
  +!--
JNI connector. It assumes the library is located in 
TOMCAT_HOME/bin/native/jni_connect.[dll, nlm, so]. or in 
LD_LIBRARY_PATH.
For different paths set nativeLibrary parameter.
  
  
  
  1.13  +2 -0  jakarta-tomcat/src/etc/modules.xml
  
  Index: modules.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/modules.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- modules.xml   27 Aug 2001 02:13:42 -  1.12
  +++ modules.xml   8 Apr 2002 02:16:40 -   1.13
  @@ -19,6 +19,8 @@
   
   module name=Http10Connector 
javaClass=org.apache.tomcat.modules.server.Http10Interceptor/
   
  +module name=CoyoteConnector 
javaClass=org.apache.coyote.tomcat3.CoyoteInterceptor/
  +
   module name=JniConnector 
javaClass=org.apache.tomcat.modules.server.JNIConnectionHandler/
   
   module name=Ajp12Connector 
javaClass=org.apache.tomcat.modules.server.Ajp12Interceptor/
  
  
  

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




cvs commit: jakarta-tomcat/src/etc server.xml

2001-12-31 Thread larryi

larryi  01/12/31 15:35:47

  Modified:src/etc  server.xml
  Log:
  There are several working configurations for StaticInterceptor using the
  new attributes.  Each with advantages and disadvantages.
  
  This implements the working configuration closest to Tomcat 3.3's default,
  which was a non-working configuration because the character set
  encoding was hardcoded to ISO-8859-1.
  
  Revision  ChangesPath
  1.95  +3 -1  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.94
  retrieving revision 1.95
  diff -u -r1.94 -r1.95
  --- server.xml5 Nov 2001 09:20:46 -   1.94
  +++ server.xml31 Dec 2001 23:35:47 -  1.95
  @@ -78,7 +78,9 @@
useJspServlet=false
/
   
  -StaticInterceptor listings=true /
  +StaticInterceptor listings=true
  +   useAcceptLanguage=true
  +   useCharset=locale /
   
   ReloadInterceptor fullReload=true /
   
  
  
  

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




cvs commit: jakarta-tomcat/src/etc server.xml

2001-10-26 Thread marcsaeg

marcsaeg01/10/26 07:01:10

  Modified:src/etc  Tag: tomcat_32 server.xml
  Log:
  Adds Jdk12Interceptor.  It is currently commented out.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.29.2.12 +7 -1  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.29.2.11
  retrieving revision 1.29.2.12
  diff -u -r1.29.2.11 -r1.29.2.12
  --- server.xml2001/07/15 23:09:31 1.29.2.11
  +++ server.xml2001/10/26 14:01:10 1.29.2.12
  @@ -125,7 +125,13 @@
   ContextInterceptor 
   className=org.apache.tomcat.context.WorkDirInterceptor /
   
  -!-- Request processing --
  + !--  Uncomment if you are using JDK1.2 or higher.  
  +  Insures proper thread context class loader is in effect for servlet 
execution
  + ContextInterceptor 
  +className=org.apache.tomcat.request.Jdk12Interceptor /
  + --
  +
  + !-- Request processing --
   !-- Session interceptor will extract the session id from cookies and 
deal with URL rewriting ( by fixing the URL ).  If you wish to
suppress the use of cookies for session identifiers, change the
  
  
  



cvs commit: jakarta-tomcat/src/etc server.xml

2001-10-18 Thread larryi

larryi  01/10/18 20:15:23

  Modified:src/etc  server.xml
  Log:
  Correction to comment about default jni_connect location
  
  Revision  ChangesPath
  1.93  +1 -1  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.92
  retrieving revision 1.93
  diff -u -r1.92 -r1.93
  --- server.xml2001/10/13 17:30:25 1.92
  +++ server.xml2001/10/19 03:15:23 1.93
  @@ -207,7 +207,7 @@
   
   !--
JNI connector. It assumes the library is located in 
  - TOMCAT_HOME/bin/i386/jni_connect.[dll, so]. or in LD_LIBRARY_PATH.
  + TOMCAT_HOME/bin/native/jni_connect.[dll, nlm, so]. or in 
LD_LIBRARY_PATH.
For different paths set nativeLibrary parameter.
   
The JniConnector will be self-enable only if JNI mode is detected.
  
  
  



cvs commit: jakarta-tomcat/src/etc server.xml

2001-09-08 Thread larryi

larryi  01/09/08 13:08:31

  Modified:src/etc  server.xml
  Log:
  Remove JspInterceptor sendErrToClient option.  I couldn't find where
  Jasper does anything with this option at this point.  I plan on leaving it
  out of the documentation.
  
  Revision  ChangesPath
  1.90  +0 -1  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.89
  retrieving revision 1.90
  diff -u -r1.89 -r1.90
  --- server.xml2001/09/03 02:18:03 1.89
  +++ server.xml2001/09/08 20:08:31 1.90
  @@ -75,7 +75,6 @@
   !-- you can add javaCompiler=jikes --
   JspInterceptor keepGenerated=true
largeFile=false
  - sendErrToClient=true
useJspServlet=false
/
   
  
  
  



cvs commit: jakarta-tomcat/src/etc server.xml

2001-09-02 Thread larryi

larryi  01/09/02 19:18:03

  Modified:src/etc  server.xml
  Log:
  Include the modules for mod_jk based connectors by default, with some
  documentation.
  
  Revision  ChangesPath
  1.89  +12 -3 jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.88
  retrieving revision 1.89
  diff -u -r1.88 -r1.89
  --- server.xml2001/08/31 09:45:50 1.88
  +++ server.xml2001/09/03 02:18:03 1.89
  @@ -154,10 +154,19 @@
   
   SessionId cookiesFirst=true noCookies=false / 
   
  -!-- Uncoment for the automatic apache config generator 
  -ApacheConfig forwardAll=true useJkMount=true
  -   noRoot=false /
  +!-- Automatic config generation
  + Set noRoot=false if you wish to have Tomcat try to take
  +   control of the external web server's root context.
  +   Additonal configuration of the external web server may be
  +   required for this to be successful.
  + Note: Configuration files are not written as part of the
  +   default startup behvior.  Append jkconf to the startup
  +   command to have Tomcat initialize, write the config files,
  +   then exit. This may be done while Tomcat is running.
 --
  +ApacheConfig noRoot=true /
  +IISConfig noRoot=true /
  +NSConfig noRoot=true /
   
!-- Uncoment for apache-style logs 
 Attributes: logFile, flush, format
  
  
  



cvs commit: jakarta-tomcat/src/etc server.xml

2001-08-15 Thread costin

costin  01/08/15 17:38:06

  Modified:src/etc  server.xml
  Log:
  Uncomment JniConnector, it'll now sit inactive unless jni mode is detected.
  
  Use the short module name instead of class=, for consistency.
  
  Revision  ChangesPath
  1.86  +10 -19jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.85
  retrieving revision 1.86
  diff -u -r1.85 -r1.86
  --- server.xml2001/08/03 02:34:22 1.85
  +++ server.xml2001/08/16 00:38:06 1.86
  @@ -169,7 +169,7 @@
  secure - use SSL ( https )
  keystore, keypass - certs for SSL
  port --
  -Http10Interceptor port=8080 
  +Http10Connector   port=8080 
   secure=false
   maxThreads=100
   maxSpareThreads=50
  @@ -192,21 +192,17 @@
   to change the default ( user.home/.keystore with changeit )
--
   !--
  -RequestInterceptor 
  - className=org.apache.tomcat.modules.server.Http10Interceptor
  - port=8443 
  - secure=true /
  +Http10Connector  port=8443 secure=true /
   --
   
   !--
  - JNI connector, make sure that you update the native_lib
  - Parameter to point to your jni_connect.dll.
  - --
  -!-- 
  -RequestInterceptor 
  - className=org.apache.tomcat.modules.server.JNIConnectionHandler
  - nativeLibrary=D:\tomcat\bin\i386\jni_connect.dll /
  + JNI connector. It assumes the library is located in 
  + TOMCAT_HOME/bin/i386/jni_connect.[dll, so]. or in LD_LIBRARY_PATH.
  + For different paths set nativeLibrary parameter.
  +
  + The JniConnector will be self-enable only if JNI mode is detected.
--
  +JniConnector / 
   
   !-- Apache AJP12 support. This is also used to shut down tomcat.
Parameter address defines network interface this Interceptor
  @@ -214,10 +210,7 @@

address=127.0.0.1
 --
  -RequestInterceptor 
  - className=org.apache.tomcat.modules.server.Ajp12Interceptor
  - tomcatAuthentication=false 
  - port=8007 /
  +Ajp12Connector  tomcatAuthentication=false port=8007 /
   
   !-- Apache AJP13 support (mod_jk)
Parameter address defines network interface this Interceptor
  @@ -225,9 +218,7 @@
   
address=127.0.0.1
 --
  -RequestInterceptor 
  -   className=org.apache.tomcat.modules.server.Ajp13Interceptor
  -   port=8009 /
  +Ajp13Connector port=8009 /
   
 !-- 
  Context definitions can be placed here ( not recommended ) or 
  
  
  



cvs commit: jakarta-tomcat/src/etc server.xml

2001-08-02 Thread costin

costin  01/08/02 19:34:22

  Modified:src/etc  server.xml
  Log:
  Moved the loader and trusted loader at beginning, it's the first thing that needs
  initiated.
  
  Changed to modules/
  
  Added the missing module ( commented out ).
  
  Revision  ChangesPath
  1.85  +9 -6  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.84
  retrieving revision 1.85
  diff -u -r1.84 -r1.85
  --- server.xml2001/07/19 17:36:15 1.84
  +++ server.xml2001/08/03 02:34:22 1.85
  @@ -10,6 +10,9 @@
   ContextManager debug=0 workDir=work 
   
 !--  Global modules  --
  +LoaderInterceptor11  useApplicationLoader=true /
  +
  +TrustedLoader /
   
   LogSetter name=tc_log timestamps=true
   verbosityLevel=INFORMATION  /
  @@ -22,10 +25,10 @@
   !-- Separated Context --
   ContextXmlReader config=conf/apps.xml /
   
  -AutoDeploy source=internal target=internal 
  +AutoDeploy source=modules target=modules 
redeploy=true /
   
  -AutoWebApp dir=internal host=DEFAULT trusted=true/
  +AutoWebApp dir=modules host=DEFAULT trusted=true/
   
   AutoDeploy source=webapps target=webapps /
   
  @@ -58,10 +61,6 @@
   path=logs/jasper-${MMdd}.log 
   verbosityLevel = INFORMATION  /
   
  -LoaderInterceptor11  useApplicationLoader=true /
  -
  -TrustedLoader /
  -
   WebXmlReader validate=true /
   
   ErrorHandler showDebugInfo=true /
  @@ -160,6 +159,10 @@
  noRoot=false /
 --
   
  + !-- Uncoment for apache-style logs 
  +  Attributes: logFile, flush, format
  +AccessLogInterceptor/
  +  --
 !--  Connectors  --
   
  !-- new http adapter. Attributes:
  
  
  



cvs commit: jakarta-tomcat/src/etc server.xml

2001-07-19 Thread larryi

larryi  01/07/19 10:36:16

  Modified:src/etc  server.xml
  Log:
  Remove Ajp14Interceptor since it won't be part of the distribution and
  could become out of date with respect to development in
  jakarta-tomcat-connectors.  Also, some minor clean up.
  
  Revision  ChangesPath
  1.84  +4 -13 jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.83
  retrieving revision 1.84
  diff -u -r1.83 -r1.84
  --- server.xml2001/07/19 05:58:08 1.83
  +++ server.xml2001/07/19 17:36:15 1.84
  @@ -194,6 +194,7 @@
port=8443 
secure=true /
   --
  +
   !--
JNI connector, make sure that you update the native_lib
Parameter to point to your jni_connect.dll.
  @@ -206,10 +207,9 @@
   
   !-- Apache AJP12 support. This is also used to shut down tomcat.
Parameter address defines network interface this Interceptor
  - binds to. Delete it if you want to bind to all interfaces.
  + binds to. Add it if you want to bind to just 127.0.0.1.

address=127.0.0.1
  - 
 --
   RequestInterceptor 
className=org.apache.tomcat.modules.server.Ajp12Interceptor
  @@ -218,22 +218,13 @@
   
   !-- Apache AJP13 support (mod_jk)
Parameter address defines network interface this Interceptor
  - binds to. Delete it if you want to bind to all interfaces. 
   
  + binds to. Add it if you want to bind to just 127.0.0.1.
  +
address=127.0.0.1
 --
   RequestInterceptor 
  className=org.apache.tomcat.modules.server.Ajp13Interceptor
  port=8009 /
  -
  -!-- Apache AJP14 support ( experimental, jakarta-tomcat-connectors)
  -This will eventually replace Ajp12 and Ajp13
  -  --
  -RequestInterceptor 
  -   className=org.apache.ajp.tomcat33.Ajp14Interceptor
  -   tomcatAuthentication=false
  -   password=changeme
  -   debug=10
  -   port=8011 /
   
 !-- 
  Context definitions can be placed here ( not recommended ) or 
  
  
  



RE: cvs commit: jakarta-tomcat/src/etc server.xml

2001-06-25 Thread GOMEZ Henri

Ajp14 default port is 8011 :)


-
Henri Gomez ___[_]
EMAIL : [EMAIL PROTECTED](. .) 
PGP KEY : 697ECEDD...oOOo..(_)..oOOo...
PGP Fingerprint : 9DF8 1EA8 ED53 2F39 DC9B 904A 364F 80E6 



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Sunday, June 24, 2001 8:59 PM
To: [EMAIL PROTECTED]
Subject: cvs commit: jakarta-tomcat/src/etc server.xml


costin  01/06/24 11:58:38

  Modified:src/etc  server.xml
  Log:
  Reverted to Ajp13 from the jakarta-tomcat workspace ( ajp13 
implementation
  is frozen, only bug fixes go in - we want to keep this as 
stable as possible)
  
  Added the Ajp14 interceptor ( experimental so far - will be 
eventually
  disabled by default in the 3.3 release - or marked as alpha/beta ).
  
  Revision  ChangesPath
  1.80  +12 -2 jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.79
  retrieving revision 1.80
  diff -u -r1.79 -r1.80
  --- server.xml   2001/06/17 19:07:28 1.79
  +++ server.xml   2001/06/24 18:58:38 1.80
  @@ -212,8 +212,18 @@
address=127.0.0.1
 --
   RequestInterceptor 
  - className=org.apache.ajp.tomcat33.Ajp13Interceptor
  - port=8009 /
  +   
className=org.apache.tomcat.modules.server.Ajp13Interceptor
  +   port=8009 /
  +
  +!-- Apache AJP14 support ( experimental, 
jakarta-tomcat-connectors)
  +This will eventually replace Ajp12 and Ajp13
  +  --
  +RequestInterceptor 
  +   className=org.apache.ajp.tomcat33.Ajp14Interceptor
  +   tomcatAuthentication=false
  +   password=changeme
  +   debug=10   
  +   port=8010 /
   
 !-- 
  Context definitions can be placed here ( not 
recommended ) or 
  
  
  




cvs commit: jakarta-tomcat/src/etc server.xml

2001-06-25 Thread hgomez

hgomez  01/06/25 01:04:39

  Modified:src/etc  server.xml
  Log:
  Ajp14 default port is 8011
  
  Revision  ChangesPath
  1.81  +1 -1  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.80
  retrieving revision 1.81
  diff -u -r1.80 -r1.81
  --- server.xml2001/06/24 18:58:38 1.80
  +++ server.xml2001/06/25 08:04:35 1.81
  @@ -223,7 +223,7 @@
  tomcatAuthentication=false
  password=changeme
  debug=10
  -   port=8010 /
  +   port=8011 /
   
 !-- 
  Context definitions can be placed here ( not recommended ) or 
  
  
  



cvs commit: jakarta-tomcat/src/etc server.xml

2001-06-24 Thread costin

costin  01/06/24 11:58:38

  Modified:src/etc  server.xml
  Log:
  Reverted to Ajp13 from the jakarta-tomcat workspace ( ajp13 implementation
  is frozen, only bug fixes go in - we want to keep this as stable as possible)
  
  Added the Ajp14 interceptor ( experimental so far - will be eventually
  disabled by default in the 3.3 release - or marked as alpha/beta ).
  
  Revision  ChangesPath
  1.80  +12 -2 jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.79
  retrieving revision 1.80
  diff -u -r1.79 -r1.80
  --- server.xml2001/06/17 19:07:28 1.79
  +++ server.xml2001/06/24 18:58:38 1.80
  @@ -212,8 +212,18 @@
address=127.0.0.1
 --
   RequestInterceptor 
  - className=org.apache.ajp.tomcat33.Ajp13Interceptor
  - port=8009 /
  +   className=org.apache.tomcat.modules.server.Ajp13Interceptor
  +   port=8009 /
  +
  +!-- Apache AJP14 support ( experimental, jakarta-tomcat-connectors)
  +This will eventually replace Ajp12 and Ajp13
  +  --
  +RequestInterceptor 
  +   className=org.apache.ajp.tomcat33.Ajp14Interceptor
  +   tomcatAuthentication=false
  +   password=changeme
  +   debug=10
  +   port=8010 /
   
 !-- 
  Context definitions can be placed here ( not recommended ) or 
  
  
  



RE: cvs commit: jakarta-tomcat/src/etc server.xml

2001-06-18 Thread GOMEZ Henri

  @@ -200,7 +197,9 @@
   !-- Apache AJP12 support. This is also used to 
shut down tomcat.
Parameter address defines network interface 
this Interceptor
binds to. Delete it if you want to bind to 
all interfaces.
  -address=127.0.0.1
  + 
  + address=127.0.0.1
  + 
 --
   RequestInterceptor 

className=org.apache.tomcat.modules.server.Ajp12Interceptor
  @@ -209,8 +208,8 @@
   
   !-- Apache AJP13 support (mod_jk)
Parameter address defines network interface 
this Interceptor
  - binds to. Delete it if you want to bind to 
all interfaces.
  - address=127.0.0.1
  + binds to. Delete it if you want to bind to 
all interfaces.
  + address=127.0.0.1
 --
   RequestInterceptor 
className=org.apache.ajp.tomcat33.Ajp13Interceptor

AJP12/AJP13 bind change WILL HAVE TO BE COMMENTED IN Changelog since
many of us use Apache and Tomcat on differents machines and the Apache
won't be able to connect to localhost !



cvs commit: jakarta-tomcat/src/etc server.xml

2001-06-17 Thread nacho

nacho   01/06/17 12:04:03

  Modified:src/etc  server.xml
  Log:
  * in Win32 adding address attr to Ajp12 makes Tomcat non stop correctly , searching 
for a solution.
  * Changing Ajp13 to not use address too, it's not needed here.
  
  Revision  ChangesPath
  1.78  +7 -3  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.77
  retrieving revision 1.78
  diff -u -r1.77 -r1.78
  --- server.xml2001/06/09 03:18:17 1.77
  +++ server.xml2001/06/17 19:04:03 1.78
  @@ -36,7 +36,10 @@
   SessionIdGenerator randomClass=java.security.SecureRandom 
   randomFile=/dev/urandom /
   
  +!--RequestInterceptor 
className=org.apache.tomcat.modules.monitor.Monitor/
  +--
   
  +
   !-- == context processing modules == --
   
   !-- This will be the default profile 
  @@ -53,7 +56,7 @@
   path=logs/jasper-${MMdd}.log 
   verbosityLevel = INFORMATION  /
   
  -LoaderInterceptor11  useApplicationLoader=true /
  +LoaderInterceptor11  useApplicationLoader=true debug=99 /
   
   WebXmlReader validate=true /
   
  @@ -197,19 +200,20 @@
   !-- Apache AJP12 support. This is also used to shut down tomcat.
Parameter address defines network interface this Interceptor
binds to. Delete it if you want to bind to all interfaces.
  +address=127.0.0.1
 --
   RequestInterceptor 
className=org.apache.tomcat.modules.server.Ajp12Interceptor
  - address=127.0.0.1
  + tomcatAuthentication=false 
port=8007 /
   
   !-- Apache AJP13 support (mod_jk)
Parameter address defines network interface this Interceptor
binds to. Delete it if you want to bind to all interfaces.
  + address=127.0.0.1
 --
   RequestInterceptor 
className=org.apache.ajp.tomcat33.Ajp13Interceptor
  - address=127.0.0.1
port=8009 /
   
 !-- 
  
  
  



cvs commit: jakarta-tomcat/src/etc server.xml

2001-06-17 Thread nacho

nacho   01/06/17 12:07:29

  Modified:src/etc  server.xml
  Log:
  Oops, cleaning a bit of mess introduced.
  
  Revision  ChangesPath
  1.79  +6 -7  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.78
  retrieving revision 1.79
  diff -u -r1.78 -r1.79
  --- server.xml2001/06/17 19:04:03 1.78
  +++ server.xml2001/06/17 19:07:28 1.79
  @@ -36,10 +36,7 @@
   SessionIdGenerator randomClass=java.security.SecureRandom 
   randomFile=/dev/urandom /
   
  -!--RequestInterceptor 
className=org.apache.tomcat.modules.monitor.Monitor/
  ---
   
  -
   !-- == context processing modules == --
   
   !-- This will be the default profile 
  @@ -56,7 +53,7 @@
   path=logs/jasper-${MMdd}.log 
   verbosityLevel = INFORMATION  /
   
  -LoaderInterceptor11  useApplicationLoader=true debug=99 /
  +LoaderInterceptor11  useApplicationLoader=true /
   
   WebXmlReader validate=true /
   
  @@ -200,7 +197,9 @@
   !-- Apache AJP12 support. This is also used to shut down tomcat.
Parameter address defines network interface this Interceptor
binds to. Delete it if you want to bind to all interfaces.
  -address=127.0.0.1
  + 
  + address=127.0.0.1
  + 
 --
   RequestInterceptor 
className=org.apache.tomcat.modules.server.Ajp12Interceptor
  @@ -209,8 +208,8 @@
   
   !-- Apache AJP13 support (mod_jk)
Parameter address defines network interface this Interceptor
  - binds to. Delete it if you want to bind to all interfaces.
  - address=127.0.0.1
  + binds to. Delete it if you want to bind to all interfaces. 
   
  + address=127.0.0.1
 --
   RequestInterceptor 
className=org.apache.ajp.tomcat33.Ajp13Interceptor
  
  
  



cvs commit: jakarta-tomcat/src/etc server.xml

2001-02-06 Thread larryi

larryi  01/02/06 20:23:58

  Modified:src/etc  server.xml
  Log:
  Remove extra "/".
  Make it a little easier to copy the "path" setting for the servlet_log to the
  tc_log .
  
  Revision  ChangesPath
  1.69  +3 -3  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.68
  retrieving revision 1.69
  diff -u -r1.68 -r1.69
  --- server.xml2001/02/06 16:51:51 1.68
  +++ server.xml2001/02/07 04:23:57 1.69
  @@ -23,12 +23,12 @@
   
   ContextInterceptor  name="servlet_log" 
   className="org.apache.tomcat.modules.config.LogSetter"
  -verbosityLevel = "INFORMATION"
  -path="logs/servlet-${MMdd}.log" /
  +path="logs/servlet-${MMdd}.log"
  +verbosityLevel = "INFORMATION"  /
   
   ContextInterceptor  name="JASPER_LOG" 
   className="org.apache.tomcat.modules.config.LogSetter"
  -path="logs/jasper-${MMdd}.log" /
  +path="logs/jasper-${MMdd}.log"
   verbosityLevel = "INFORMATION"  /
   
   !-- 
  
  
  

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




cvs commit: jakarta-tomcat/src/etc server.xml

2001-02-01 Thread costin

costin  01/02/01 20:56:45

  Modified:src/etc  server.xml
  Log:
  Replace AutoSetup with the 2 components.
  
  Revision  ChangesPath
  1.67  +4 -1  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.66
  retrieving revision 1.67
  diff -u -r1.66 -r1.67
  --- server.xml2001/02/01 07:03:36 1.66
  +++ server.xml2001/02/02 04:56:45 1.67
  @@ -40,7 +40,10 @@
   className="org.apache.tomcat.modules.config.ContextXmlReader" /
   
   ContextInterceptor 
  -className="org.apache.tomcat.modules.config.AutoSetup" /
  +className="org.apache.tomcat.modules.config.AutoDeploy" /
  +
  +ContextInterceptor 
  +className="org.apache.tomcat.modules.config.AutoWebApp" /
   
   !-- Generate includeable Apache configuration files for mod_jserv
and mod_jk.
  
  
  

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




cvs commit: jakarta-tomcat/src/etc server.xml

2001-01-31 Thread costin

costin  01/01/31 23:03:36

  Modified:src/etc  server.xml
  Log:
  Ops, only RequestInterceptor or Interceptor was defined inside context.
  
  All configuration directives will be simplified ( as part of
  "usability" ), right now it's not the biggest priority.
  
  Revision  ChangesPath
  1.66  +5 -5  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.65
  retrieving revision 1.66
  diff -u -r1.65 -r1.66
  --- server.xml2001/02/01 06:24:34 1.65
  +++ server.xml2001/02/01 07:03:36 1.66
  @@ -44,9 +44,9 @@
   
   !-- Generate includeable Apache configuration files for mod_jserv
and mod_jk.
  -  --
   ContextInterceptor
   className="org.apache.tomcat.modules.config.ApacheConfig" /
  +  --
   
   ContextInterceptor 
   className="org.apache.tomcat.facade.WebXmlReader" /
  @@ -242,15 +242,15 @@
   docBase="webapps/examples" 
   debug="0" 
reloadable="true"  
  -  RequestInterceptor 
  +  Interceptor 
 className="org.apache.tomcat.modules.aaa.SimpleRealm" 
 filename="conf/users/example-users.xml"
 debug="0" /
  -  ContextInterceptor  name="example_tc_log" 
  +  Interceptor  name="example_tc_log" 
 className="org.apache.tomcat.modules.config.LogSetter"
 verbosityLevel = "INFORMATION"
 path="logs/examples.log" /
  -  ContextInterceptor  name="example_servlet_log" 
  +  Interceptor  name="example_servlet_log" 
className="org.apache.tomcat.modules.config.LogSetter"
verbosityLevel = "INFORMATION"
path="logs/servlet_examples.log" servletLogger="true"/
  @@ -269,7 +269,7 @@
debug="0" 
reloadable="true" 
trusted="false"  
  -RequestInterceptor 
  +Interceptor 
   className="org.apache.tomcat.modules.aaa.SimpleRealm" 
   filename="conf/users/admin-users.xml"
   debug="0" /
  
  
  

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




cvs commit: jakarta-tomcat/src/etc server.xml

2001-01-28 Thread costin

costin  01/01/28 11:19:12

  Modified:src/etc  server.xml
  Log:
  Removed unused modules.
  
  Revision  ChangesPath
  1.62  +0 -14 jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- server.xml2001/01/27 00:41:26 1.61
  +++ server.xml2001/01/28 19:19:11 1.62
  @@ -115,25 +115,11 @@
   ContextInterceptor 
   className="org.apache.tomcat.modules.config.PolicyLoader" /
   
  -!-- Uncomment out if you have JDK1.2 and want to implement
  -  the Java SecurityManager
   ContextInterceptor 
  -className="org.apache.tomcat.modules.config.PolicyInterceptor" /
  ---
  -
  -!-- For JDK1.2 and URLClassLoader 
  -ContextInterceptor 
  -className="org.apache.tomcat.modules.config.LoaderInterceptor12" /
  ---
  -
  -ContextInterceptor 
   className="org.apache.tomcat.modules.config.LoaderInterceptor11" /
   
  -!-- Default Error handler 
  -  --
   ContextInterceptor 
   className="org.apache.tomcat.modules.generators.ErrorHandler" /
  -
   
   ContextInterceptor 
   className="org.apache.tomcat.modules.config.WorkDirSetup" /
  
  
  

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




cvs commit: jakarta-tomcat/src/etc server.xml

2000-11-22 Thread nacho

nacho   00/11/22 11:23:18

  Modified:src/etc  server.xml
  Log:
  a typo
  
  Revision  ChangesPath
  1.53  +1 -1  jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -r1.52 -r1.53
  --- server.xml2000/11/22 01:10:29 1.52
  +++ server.xml2000/11/22 19:23:17 1.53
  @@ -99,7 +99,7 @@
   
 !--  Interceptors  --
   ContextInterceptor 
  -className="org.apache.tomcat.context.DefaultCMSetter" 
  +className="org.apache.tomcat.context.DefaultCMSetter" /
   
   !-- 
ContextInterceptor className="org.apache.tomcat.context.LogEvents"