Page tree

Versions Compared

Key

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

...

Enable Tomcat AJP Connector

First we must enable the the Connector. In this example we will use the standard port 9009 in the Confluence Tomcat by editing . Edit /opt/confluence/conf/server.xml.

First add Add the Connector directive <Connector port="8009" protocol="AJP/1.3 "URIEncoding="UTF-8" /> just above the Engine directive,

Code Block
langhtml
useURIValidationHack="false" URIEncoding="UTF-8"/>

        <Connector port="8009" protocol="AJP/1.3" URIEncoding="UTF-8" />

        <Engine name="Standalone" 



Info

The UTF-8 is important as Confluence is developed to post using UTF-8.

Without this setting errors occur when working with attachments containing special characters.

Select and Enable Context Path

...