updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / mod_auth_kerb / auth_kerb.conf
blobb593270117215d4b1ee48f20eb770e1e32abf781
2 # The mod_auth_kerb module implements Kerberos authentication over
3 # HTTP, following the "Negotiate" protocol.
4
6 LoadModule auth_kerb_module modules/mod_auth_kerb.so
9 # Sample configuration: Kerberos authentication must only be
10 # used over SSL to prevent replay attacks.  The keytab file
11 # configured must be readable only by the "apache" user, and
12 # must contain service keys for "HTTP/www.example.com", where
13 # "www.example.com" is the FQDN of this server.
16 #<Location /private>
17 #  SSLRequireSSL
18 #  AuthType Kerberos
19 #  AuthName "Kerberos Login"
20 #  KrbMethodNegotiate On
21 #  KrbMethodK5Passwd Off
22 #  KrbAuthRealms EXAMPLE.COM
23 #  Krb5KeyTab /etc/httpd/conf/keytab
24 #  require valid-user
25 #</Location>