Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

1. Download the Apache Tomcat connector

2. You will need to adjust the Apache Tomcat server.xml file to utilize the connector as follows:

  • Open server.xml for editing
  • Comment out the default connector as shown below:
No Format

<!-- Define a non-SSL HTTP/1.1 Connector on port 8080 
    <Connector port="8080" maxHttpHeaderSize="8192"
               maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
               enableLookups="false" redirectPort="8443" acceptCount="100"
               connectionTimeout="20000" disableUploadTimeout="true" URIEncoding="UTF-8"/> -->
  • Now, uncomment the following connector block:
    No Format
    
       <!-- Define an AJP 1.3 Connector on port 8009 -->
        <Connector port="8009"
                   enableLookups="false" redirectPort="8443" protocol="AJP/1.3" />
    
    
SSL configuration

...