Versions Compared

Key

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

...

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

  • Shutdown tomcat
  • Open server.xml for editing (/path/to/your/apache-tomcat/conf/server.xml)
  • Comment out the default connector as shown below:

...

  • 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" />
    
    
  • You may adjust to port (port="8009") if you wish.
SSL configuration

...