New config file examples, and a self-signed key
[shibboleth/cpp-sp.git] / configs / apache.config.in
1 # ADD THIS TO THE END OF YOUR APACHE'S HTTPD.CONF
2
3 ######
4 ## SHIB Config
5 ######
6
7 #
8 # Load the Shibboleth module.
9 #
10 LoadModule shire_module @-LIBEXECDIR-@/mod_shire.so
11
12 #
13 # Global Configuration
14 # This is the XML file that contains all the global, non-apache-specific
15 # configuration.  Look at this file for most of your configuration parameters.
16 #
17 ShibSchemaDir @-PKGSYSCONFDIR-@
18 ShibConfig @-PKGSYSCONFDIR-@/shibboleth.xml
19
20 #
21 # Configure the module for content
22 #
23 # You can now do most of this in shibboleth.xml using the RequestMap
24 # but you MUST enable AuthType shibboleth for the module to process
25 # any requests, and there MUST be a require command as well.
26 # You can turn on require valid-user at the root, and then override
27 # as needed. This will not actually force a user session unless
28 # you require one. See the deploy guide for details.
29 #
30 <Location />
31   AuthType shibboleth
32   require valid-user
33 </Location>