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]




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 
  
  
  




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 !