Blame SOURCES/auth_kerb.conf

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