mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
7f2f69966e
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
27 lines
727 B
Text
27 lines
727 B
Text
|
|
# The mod_auth_kerb module implements Kerberos authentication over
|
|
# HTTP, following the "Negotiate" protocol.
|
|
#
|
|
|
|
LoadModule auth_kerb_module @baselibdir@/httpd/modules/mod_auth_kerb.so
|
|
|
|
#
|
|
# Sample configuration: Kerberos authentication must only be
|
|
# used over SSL to prevent replay attacks. The keytab file
|
|
# configured must be readable only by the "apache" user, and
|
|
# must contain service keys for "HTTP/www.example.com", where
|
|
# "www.example.com" is the FQDN of this server.
|
|
#
|
|
|
|
#<Location /private>
|
|
# SSLRequireSSL
|
|
# AuthType Kerberos
|
|
# AuthName "Kerberos Login"
|
|
# KrbMethodNegotiate On
|
|
# KrbMethodK5Passwd Off
|
|
# KrbAuthRealms EXAMPLE.COM
|
|
# Krb5KeyTab /etc/httpd/krb5.keytab
|
|
# require valid-user
|
|
#</Location>
|
|
|
|
|