Fix the names of the (new) apache modules
[shibboleth/sp.git] / configs / apache2.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 mod_shib @-LIBEXECDIR-@/mod_shib_20.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. To
26 # enable Shibboleth but not specify any session/access requirement
27 # use "require Shibboleth".
28 #
29 <Location /secure>
30   AuthType shibboleth
31   ShibRequireSession On
32   require valid-user
33 </Location>