blob: 815b2be7ac5f9f466561e3487e4dc015be60adeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#
# Load the Shibboleth module.
#
LoadModule mod_shib /usr/@baselibdir@/shibboleth/mod_shib_24.so
#
# Used for example style sheet in error templates.
#
<IfModule mod_alias.c>
<Location /shibboleth-sp>
Require all granted
</Location>
Alias /shibboleth-sp/main.css /usr/share/shibboleth/main.css
</IfModule>
#
# Configure the module for content.
#
# You MUST enable AuthType shibboleth for the module to process
# any requests, and there MUST be a require command as well. To
# enable Shibboleth but not specify any session/access requirements
# use "require shibboleth".
#
#<Location /secure>
# AuthType shibboleth
# ShibRequestSetting requireSession 1
# require valid-user
#</Location>
|