Versions Compared

Key

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

...

After setting up the mod_jk connector above, you will need to modify the Tomcat's server.xml (located in [tomcat root]/conf/) to respond to requests from Apache via the connector. Look for the <connector> directive and add the following properties:

...

Locate the <Host name="localhost"...> directive and update as follows:

No Format

<Host name="localhost" appBase="webapps"
      DeployOnStartup="false"
      unpackWARs="true" autoDeploy="false"  
      xmlValidation="false" xmlNamespaceAware="false">
  
  <Alias>example.com</Alias>
  <Context path=""
        docBase="/usr/local/tomcat/webapps/vivo"
        reloadable="true"
        cookies="true" > 
    <Manager pathname="" />
    <Environment type="java.lang.String" override="false" 
          name="path.configuration" 
          value="deploy.properties" 
    />
  </Context>
  ...

...

externalAuth.netIdHeaderName = [the header name]

For example:

externalAuth.netIdHeaderName = remote_userID

...

selfEditing.idMatchingProperty = [the URI of the property]

For example:

selfEditing.idMatchingProperty =

...