X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=configs%2Fapache.config.in;h=7c4839776e12349dc2ca76b206cf20438fe2a936;hb=HEAD;hp=70832dfe03a2a9a1e5c143e45297765b1df867cb;hpb=2ca687da614b9d9f45cb7e30deea3b450c7016e3;p=shibboleth%2Fcpp-sp.git diff --git a/configs/apache.config.in b/configs/apache.config.in index 70832df..7c48397 100644 --- a/configs/apache.config.in +++ b/configs/apache.config.in @@ -1,41 +1,56 @@ -# ADD THIS TO THE END OF YOUR APACHE'S HTTPD.CONF +# https://wiki.shibboleth.net/confluence/display/SHIB2/NativeSPApacheConfig -###### -## SHIB Config -###### +# RPM installations on platforms with a conf.d directory will +# result in this file being copied into that directory for you +# and preserved across upgrades. + +# For non-RPM installs, you should copy the relevant contents of +# this file to a configuration location you control. # # Load the Shibboleth module. # -LoadModule shire_module @-LIBEXECDIR-@/mod_shire.so +LoadModule mod_shib @-PKGLIBDIR-@/mod_shib_13.so # -# Global Configuration -# This is the XML file that contains all the global, non-apache-specific -# configuration. Look at this file for most of your configuration parameters. +# An Apache handler needs to be established for the "handler" location. +# This applies the handler to any requests for a resource with a ".sso" +# extension. # -ShibSchemaDir @-PKGSYSCONFDIR-@ -ShibConfig @-PKGSYSCONFDIR-@/shibboleth.xml + + SetHandler shib-handler + # -# A handler needs to be established for the SHIRE URL -# This matches up to the shireURL setting in shibboleth.xml +# Ensures handler will be accessible. # - -SetHandler shib-shire-post + + Satisfy Any + Allow from all # -# Configure the module for content +# Used for example style sheet in error templates. +# + + Alias /shibboleth-sp/main.css @-PKGWEBDIR-@/main.css + + Satisfy Any + Allow from all + + + +# +# Configure the module for content. # -# You can now do most of this in shibboleth.xml using the RequestMap -# but you MUST enable AuthType shibboleth for the module to process -# any requests, and there MUST be a require command as well. -# You can even turn on require valid-user at the root, and then override -# as needed. This will not actually force a user session unless -# you tell it to require one. See the documentation for details. +# 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". # AuthType shibboleth - require valid-user + ShibCompatWith24 On + ShibRequestSetting requireSession 1 + require shib-session