diff options
author | Thibaut Notteboom <tib@tibux.org> | 2013-03-03 12:45:36 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-03-03 12:45:36 -0600 |
commit | e82df38da0f608d618b623fe024ab3fa8950bb17 (patch) | |
tree | 08a3cc3130a2ce436ab422a176a758c12defa61c /network/shibboleth-sp/mod_shib.conf | |
parent | ba84a34c191db5a047da568d5c670f18ea37861b (diff) | |
download | slackbuilds-e82df38da0f608d618b623fe024ab3fa8950bb17.tar.gz |
network/shibboleth-sp: Added (Shibboleth Service Provider)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/shibboleth-sp/mod_shib.conf')
-rw-r--r-- | network/shibboleth-sp/mod_shib.conf | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/network/shibboleth-sp/mod_shib.conf b/network/shibboleth-sp/mod_shib.conf new file mode 100644 index 0000000000..815b2be7ac --- /dev/null +++ b/network/shibboleth-sp/mod_shib.conf @@ -0,0 +1,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> + |