Versions Compared

Key

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

...

Code Block
titleshibboleth2.xml
<ApplicationDefaults entityID="xxx"  ...>
    <Sessions lifetime="28800" timeout="3600" relayState="ss:mem" checkAddress="false" handlerSSL="true" cookieProps="https">
    ...
    <ApplicationOverride id="myAppName">
      <Sessions lifetime="7200" timeout="600" relayState="ss:mem"checkAddress="false" handlerSSL="true" cookieProps="https">           
        <SSO entityID="https://shibidp.cit.cornell.edu/idp/shibboleth">
          SAML2
        </SSO>
      </Sessions>
    </ApplicationOverride>
</ApplicationDefaults>

Step 2: Map the applicable resources using a matching applicationId setting.

Code Block
titleFor Apache (, open httpd.conf or equiv)
<VirtualHost ...>
    <Location />
       AuthType shibboleth
       ShibRequestSetting applicationId myAppName
       ...  
    </Location>
</VirtualHost>


Code Block
titleFor IIS(, open shibboleth2.xml)
<RequestMap>
...
    <Host name="myapphost.example.org" applicationId="myAppName"/>
...
</RequestMap>

...