Child pages
  • ShibbolethRootLevelConfiguration

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

Configuring Shibboleth to Protect Root Level with Tomcat/Apache

dev

This guide will help you configure your Shibboleth application running on Tomcat/Apache under root level. This guide assumes that you are running Apache and Tomcat with mod jk.

http.conf

For the mod-shib section of the httpd.conf file make sure / is in the Location element.

Code Block
xml
xml
 
<Location />
  AuthType shibboleth
  require shibboleth
</Location>

If you application is on root, you are probably routing everything to Tomcat. Thus we must exclude it and let Apache handle the Shibboleth part. We will be using JkUnMount. Add the elements below to the modjk section of the httpd.conf file.

Code Block
xml
xml
JkUnMount /Shibboleth.sso/* worker1
JkUnMount /shibboleth worker1
JkUnMount /shibboleth-sp/* worker1