Versions Compared

Key

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

...

The following tells Apache to redirect calls to the bare hostname should go to landing page

## hits to just the bare hostname should go to landing page
<LocationMatch "^/$">
RewriteEngine On
RewriteRule .* /shrine-api/shrine-webclient
</LocationMatch>

The following tells Apache to use Shibboleth for authentication for a number of whitelisted URLs starting with "shrine-api":

...