Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

The <container-config> element is used to hold container specific Web application settings using the following format. None of the Tomcat configuration elements are required, but if specified, they must follow the order in the example below.

Code Block
XML
XML
borderStylesolidXML

<container-config>
    <tomcat xmlns="http://geronimo.apache.org/xml/ns/web/tomcat/config-1.0">
        <!-- Begin Tomcat configuration elements -->
        <host>host</host>
        <cross-context/>
        <disable-cookies/>
        <valve-chain>valve</valve-chain>
        <listener-chain>listener</listener>
        <tomcat-realm>realm</tomcat-realm>
        <manager>manager</manager>
        <cluster>cluster</cluster>
        <!-- End Tomcat configuration elements -->
    </tomcat>
</container-config>

...