source: nutchez-0.1/tomcat/webapps/docs/config/printer/index.html @ 66

Last change on this file since 66 was 66, checked in by waue, 15 years ago

NutchEz - an easy way to nutch

File size: 4.4 KB
Line 
1<html><head><META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><title>Apache Tomcat Configuration Reference - Overview</title><meta value="Craig R. McClanahan" name="author"><meta value="craigmcc@apache.org" name="email"></head><body vlink="#525D76" alink="#525D76" link="#525D76" text="#000000" bgcolor="#ffffff"><table cellspacing="0" width="100%" border="0"><!--PAGE HEADER--><tr><td><!--PROJECT LOGO--><a href="http://tomcat.apache.org/"><img border="0" alt="
2    The Apache Tomcat Servlet/JSP Container
3  " align="right" src="../../images/tomcat.gif"></a></td><td><font face="arial,helvetica,sanserif"><h1>Apache Tomcat 6.0</h1></font></td><td><!--APACHE LOGO--><a href="http://www.apache.org/"><img border="0" alt="Apache Logo" align="right" src="../../images/asf-logo.gif"></a></td></tr></table><table cellspacing="4" width="100%" border="0"><!--HEADER SEPARATOR--><tr><td colspan="2"><hr size="1" noshade></td></tr><tr><!--RIGHT SIDE MAIN BODY--><td align="left" valign="top" width="80%"><table cellspacing="4" width="100%" border="0"><tr><td valign="top" align="left"><h1>Apache Tomcat Configuration Reference</h1><h2>Overview</h2></td><td nowrap="true" valign="top" align="right"><img border="0" hspace="0" vspace="0" height="1" width="1" src="../../images/void.gif"></td></tr></table><table cellpadding="2" cellspacing="0" border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" color="#ffffff"><a name="Overview"><strong>Overview</strong></a></font></td></tr><tr><td><blockquote>
4
5<p>This manual contains reference information about all of the configuration
6directives that can be included in a <code>conf/server.xml</code> file to
7configure the behavior of the Tomcat 6 Servlet/JSP container.  It does not
8attempt to describe which configuration directives should be used to perform
9specific tasks - for that, see the various <em>HOW-TO</em> documents on the
10main index page.</p>
11
12<p>The configuration element descriptions are organized into the following
13major categories:</p>
14<ul>
15<li><strong>Top Level Elements</strong> - <code>&lt;Server&gt;</code> is the
16    root element of the entire configuration file, while
17    <code>&lt;Service&gt;</code> represents a group of Connectors that is
18    associated with an Engine.</li>
19<li><strong>Connectors</strong> - Represent the interface between external
20    clients sending requests to (and receiving responses from) a particular
21    Service.</li>
22<li><strong>Containers</strong> - Represent components whose function is to
23    process incoming requests, and create the corresponding responses.
24    An Engine handles all requests for a Service, a Host handles all requests
25    for a particular virtual host, and a Context handles all requests for a
26    specific web application.</li>
27<li><strong>Nested Components</strong> - Represent elements that can be
28    nested inside the element for a Container.  Some elements can be nested
29    inside any Container, while others can only be nested inside a
30    Context.</li>
31</ul>
32
33<p>For each element, the corresponding documentation follows this general
34outline:</p>
35<ul>
36<li><strong>Introduction</strong> - Overall description of this particular
37    component.  There will be a corresponding Java <em>interface</em> (in
38    the <code>org.apache.catalina</code> pacakge) that is implemented by one
39    or more standard implementations.</li>
40<li><strong>Attributes</strong> - The set of attributes that are legal for
41    this element.  Generally, this will be subdivided into <em>Common</em>
42    attributes that are supported by all implementations of the corresponding
43    Java interface, and <em>Standard Implementation</em> attributes that are
44    specific to a particular Java class that implements this interface.
45    The names of required attributes are <strong>bolded</strong>.</li>
46<li><strong>Nested Components</strong> - Enumerates which of the <em>Nested
47    Components</em> can be legally nested within this element.</li>
48<li><strong>Special Features</strong> - Describes the configuration of a large
49    variety of special features (specific to each element type) that are
50    supported by the standard implementation of this interface.</li>
51</ul>
52
53</blockquote></td></tr></table></td></tr><!--FOOTER SEPARATOR--><tr><td colspan="2"><hr size="1" noshade></td></tr><!--PAGE FOOTER--><tr><td colspan="2"><div align="center"><font size="-1" color="#525D76"><em>
54        Copyright &copy; 1999-2008, Apache Software Foundation
55        </em></font></div></td></tr></table></body></html>
Note: See TracBrowser for help on using the repository browser.