From: fhanik Date: Fri, 4 Aug 2006 21:38:22 +0000 (+0000) Subject: Added documentation about the NIO connector and clarified how the protocol attribute... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=e3932a27ccdf2e44fca152301902f57cc2aa7d5b;p=tomcat7.0 Added documentation about the NIO connector and clarified how the protocol attribute is read. git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@428895 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/webapps/docs/config/http.xml b/webapps/docs/config/http.xml index 5837471f5..8121ba57d 100644 --- a/webapps/docs/config/http.xml +++ b/webapps/docs/config/http.xml @@ -108,8 +108,22 @@ -

This attribute value must be HTTP/1.1 to use the HTTP - handler, which is the default.

+

+ Sets the protocol to handle incoming traffic. + The default value is HTTP/1.1 and configures the + org.apache.coyote.http11.Http11Protocol. This is the blocking Java connector.
+ If the PATH(Windows) or LD_LIBRARY_PATH(on most unix system) + environment variables contain the Tomcat native library, the APR connector + will automatically be configured. Please be advised that the APR connector has different + settings for HTTPS than the default Java connector.
+ Other values for this attribute are, but not limited to:
+ org.apache.coyote.http11.Http11Protocol - same as HTTP/1.1
+ org.apache.coyote.http11.Http11NioProtocol - non blocking Java connector
+ org.apache.coyote.http11.Http11AprProtocol - the APR connector.
+ The configuration for both Java connectors are identical, both for http and https. + For more information on the APR connector, please + visit the APR documentation +