On 4 May 2010 14:22, Looijmans, Mike <mike.looijmans@oce.com> wrote:
> I'm trying to enable TLS (or SSL) in a Tomcat 5.5.29 server, on a
> Windows XP machine.
>
> Whatever I do, I always end up with a server that just delivers plain
> HTML on port 443, and it doesn't even try to use TLS.
[...]
> <!-- 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"
> />
See http://tomcat.apache.org/tomcat-5.5-doc/ssl-howto.html . I
suspect you're missing:
SSLEnabled="true"
- Peter
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org
|