Blame SOURCES/auth_kerb.conf

0e5650
#
0e5650
# The mod_auth_kerb module implements Kerberos authentication over
0e5650
# HTTP, following the "Negotiate" protocol.
0e5650
# 
0e5650
0e5650
LoadModule auth_kerb_module modules/mod_auth_kerb.so
0e5650
0e5650
#
0e5650
# Sample configuration: Kerberos authentication must only be
0e5650
# used over SSL to prevent replay attacks.  The keytab file
0e5650
# configured must be readable only by the "apache" user, and
0e5650
# must contain service keys for "HTTP/www.example.com", where
0e5650
# "www.example.com" is the FQDN of this server.
0e5650
#
0e5650
0e5650
#<Location /private>
0e5650
#  SSLRequireSSL
0e5650
#  AuthType Kerberos
0e5650
#  AuthName "Kerberos Login"
0e5650
#  KrbMethodNegotiate On
0e5650
#  KrbMethodK5Passwd Off
0e5650
#  KrbAuthRealms EXAMPLE.COM
0e5650
#  Krb5KeyTab /etc/httpd/conf/keytab
0e5650
#  require valid-user
0e5650
#</Location>