Return-Path: X-Original-To: apmail-tomcat-dev-archive@www.apache.org Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0E9459B87 for ; Tue, 26 Jun 2012 18:00:26 +0000 (UTC) Received: (qmail 2205 invoked by uid 500); 26 Jun 2012 18:00:25 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 2141 invoked by uid 500); 26 Jun 2012 18:00:25 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 2131 invoked by uid 99); 26 Jun 2012 18:00:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Jun 2012 18:00:25 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Jun 2012 18:00:23 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 62CAF2388C02 for ; Tue, 26 Jun 2012 18:00:02 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1354138 - in /tomcat/tc7.0.x/trunk: ./ webapps/docs/ssl-howto.xml Date: Tue, 26 Jun 2012 18:00:02 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120626180002.62CAF2388C02@eris.apache.org> Author: markt Date: Tue Jun 26 18:00:01 2012 New Revision: 1354138 URL: http://svn.apache.org/viewvc?rev=1354138&view=rev Log: Align protocol values with the surrounding text Modified: tomcat/tc7.0.x/trunk/ (props changed) tomcat/tc7.0.x/trunk/webapps/docs/ssl-howto.xml Propchange: tomcat/tc7.0.x/trunk/ ------------------------------------------------------------------------------ Merged /tomcat/trunk:r1354137 Modified: tomcat/tc7.0.x/trunk/webapps/docs/ssl-howto.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/ssl-howto.xml?rev=1354138&r1=1354137&r2=1354138&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/webapps/docs/ssl-howto.xml (original) +++ tomcat/tc7.0.x/trunk/webapps/docs/ssl-howto.xml Tue Jun 26 18:00:01 2012 @@ -348,9 +348,8 @@ will need to remove the comments and edi this:

<-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --> -<-- Hard-coded to use the NIO protocol implementation --> <Connector - protocol="org.apache.coyote.http11.Http11NioProtocol" + protocol="HTTP/1.1" port="8443" maxThreads="200" scheme="https" secure="true" SSLEnabled="true" keystoreFile="${user.home}/.keystore" keystorePass="changeit" @@ -364,9 +363,8 @@ this:

particularly keys and certificates. An example of an APR configuration is: <-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --> -<-- Hard-coded to use the APR protocol implementation --> <Connector - protocol="org.apache.coyote.http11.Http11AprProtocol" + protocol="HTTP/1.1" port="8443" maxThreads="200" scheme="https" secure="true" SSLEnabled="true" SSLCertificateFile="/usr/local/ssl/server.crt" --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org