cvs commit: jakarta-tomcat-4.0/webapps/tomcat-docs/config http11.xml

2002-02-04 Thread jfclere

jfclere 02/02/04 05:36:07

  Modified:webapps/tomcat-docs/config http11.xml
  Log:
  Arrange webapp link.
  
  Revision  ChangesPath
  1.3   +1 -1  jakarta-tomcat-4.0/webapps/tomcat-docs/config/http11.xml
  
  Index: http11.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/http11.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- http11.xml25 Aug 2001 01:14:13 -  1.2
  +++ http11.xml4 Feb 2002 13:36:07 -   1.3
  @@ -29,7 +29,7 @@
 If you wish to configure the Connector that is used
 for connections to web servers using the WARP protocol (such as the
 mod_webapp connector for Apache 1.3), see
  -  here instead.
  +  here instead.
   
 At server startup time, this Connector will create a
 number of request processing threads (based on the value configured for
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-tomcat-4.0/webapps/tomcat-docs/config http11.xml server.xml service.xml warp.xml

2001-08-20 Thread craigmcc

craigmcc01/08/20 19:28:21

  Modified:webapps/tomcat-docs index.xml project.xml tomcat-docs.xsl
  Added:   webapps/tomcat-docs proxy-howto.xml
   webapps/tomcat-docs/config http11.xml server.xml service.xml
warp.xml
  Log:
  Migrate the first four pages of the Server Configuration information
  (Server, Service, HTTP/1.1 Connector, and WARP Connector) to the new
  documentation style.  Added a new  template to the stylesheet
  to support rendering of attribute/description tables.
  
  Separated out the information on configuring Tomcat behind a proxy server
  into a new "Proxy Support HOW-TO" document.
  
  Revision  ChangesPath
  1.9   +3 -0  jakarta-tomcat-4.0/webapps/tomcat-docs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/index.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- index.xml 2001/08/20 22:43:52 1.8
  +++ index.xml 2001/08/21 02:28:21 1.9
  @@ -65,6 +65,9 @@
   Manager App HOW-TO -
   Operating the Manager web app to deploy, undeploy, and
   redeploy applications while Tomcat is running.
  +Proxy Support HOW-TO -
  +Configuring Tomcat 4 to run behind a proxy server (or a web server
  +functioning as a proxy server).
   SSL Configuration HOW-TO -
   Installing and
   configuring SSL support so that your Tomcat will serve requests using
  
  
  
  1.9   +1 -0  jakarta-tomcat-4.0/webapps/tomcat-docs/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/project.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- project.xml   2001/08/20 22:43:52 1.8
  +++ project.xml   2001/08/21 02:28:21 1.9
  @@ -25,6 +25,7 @@
   
   
   
  +
   
   
   
  
  
  
  1.3   +45 -14jakarta-tomcat-4.0/webapps/tomcat-docs/tomcat-docs.xsl
  
  Index: tomcat-docs.xsl
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/tomcat-docs.xsl,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- tomcat-docs.xsl   2001/08/05 04:02:30 1.2
  +++ tomcat-docs.xsl   2001/08/21 02:28:21 1.3
  @@ -1,7 +1,7 @@
   
   
   
  -
  +
   
   http://www.w3.org/1999/XSL/Transform";
 version="1.0">
  @@ -14,22 +14,23 @@
   
   
 
  -  
  -  http://jakarta.apache.org/'"/>
  -  
  -  
  -  
  +  
  +  http://jakarta.apache.org/'"/>
  +  
  +  
  +  
   
   
 
  -  
  -  
  -  
  -  
  -  
  -  
  -  
  -  
  +  
  +  
  +  
  +  
  +  
  +  
  +  
  +  
  +  
   
   
 
  @@ -231,6 +232,36 @@
   
 
   
  +  
  +
  +
  +  
  +  
  +
  +  
  +
  +  Attribute
  +
  +
  +  Description
  +
  +
  +
  +  
  +
  +  
  +
  +
  +  
  +
  +  
  +  
  +
  +  
  +
  +
  +  
  +
 
   
   
  
  
  
  1.1  jakarta-tomcat-4.0/webapps/tomcat-docs/proxy-howto.xml
  
  Index: proxy-howto.xml
  ===
  
  
  ]>
  
  
  &project;
  
  
  Craig R. McClanahan
  Proxy Support HOW-TO
  
  
  
  
  
  
  
  Using standard configurations of Tomcat, web applications can ask for
  the server name and port number to which the request was directed for
  processing.  When Tomcat is running standalone with the
  HTTP/1.1 Connector, it will generally
  report the server name specified in the request, and the port number on
  which the Connector is listening.  The two servlet API
  calls of interest, for this purpose, are:
  
  ServletRequest.getServerName()
  ServletRequest.getServerPort()
  
  
  When you are running behind a proxy server (or a web server that is
  configured to behave like a proxy server), you will sometimes prefer to
  manage the values returned by these calls.  In particular, you will
  generally want the port number to reflect that specified in the original
  request, not the one on which the Connector itself is
  listening.  You can use the proxyName and proxyPort
  attributes on the  element to configure
  these values.
  
  Proxy support can take many forms.  The following sections describe
  proxy configurations for several common cases.
  
  
  
  
  
  Apache 1.3 supports an optional module (mod_proxy) that
  configures the web server to act as a proxy server.  This can be used to
  forward requests for a particular web application to a Tomcat 4 instance,
  without having to