2010/5/4 Looijmans, Mike <mike.looijm...@oce.com>:
> May 4, 2010 3:13:52 PM org.apache.coyote.http11.Http11AprProtocol init
> INFO: Initializing Coyote HTTP/1.1 on http-443

The "Apr" in the above message means that you are using APR version
of the connector.

>    <!-- Define a SSL HTTP/1.1 Connector on port 443 -->
>    <Connector port="443" maxHttpHeaderSize="8192"
>               maxThreads="150" minSpareThreads="2" maxSpareThreads="75"
>               enableLookups="false" disableUploadTimeout="true"
>               acceptCount="10" scheme="https" secure="true"
>               clientAuth="false" sslProtocol="TLS"
>               keystoreFile="conf/server.ks"
>               keystorePass="tomcat"
>                />

When APR version of the connector is used, you should specify the
SSLCertificateFile and SSLCertificateKeyFile attributes. The
keystoreFile attribute is ignored.

> See http://tomcat.apache.org/tomcat-5.5-doc/ssl-howto.html

See also configuration reference:
http://tomcat.apache.org/tomcat-5.5-doc/config/http.html

If you do not want to use the APR connector, you can either remove
bin/tcnative-1.dll, or set
protocol="org.apache.coyote.http11.Http11Protocol"


FIXME:
1) The SSLEnabled attribute is @since Tomcat 6.
It should not be present in the examples, though it does not hurt,
because unknown configuration attributes are ignored in Tomcat 5.5
2) SSLCertificateFile, SSLCertificateKeyFile are not mentioned in the
configuration reference (config/http.html).

Best regards,
Konstantin Kolinko

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to