I'm now looking for an example of how to use the NIO connector
with Tomcat--I
need this in order to use chat. I've found the following
example of how to
configure this on the Tomcat side:
<Connector
port="8443"
protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="150"
scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
SSLEnabled="true"
keystoreFile="conf/keystore"
keystorePass="secrit"/>
But I can't seem to find any information on
how to configure things
on the Apache side--in the httpd.conf file--so that
requests to Apache
get successfully routed to Tomcat using the NIO
connector.
Any thoughts on this??
Thanks in advance,
DL