summaryrefslogtreecommitdiff
blob: e567274c7707b994de986f2a1f72f994b18f5f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<IfDefine AUTH_KERB>
LoadModule auth_kerb_module modules/mod_auth_kerb.so

<Directory "/var/www/private">
	AuthType Kerberos
	AuthName "Kerberos Login"
	# See the INSTALL file about howto create the keytab
	Krb5Keytab conf/apache.keytab
	KrbAuthRealms EXAMPLE.COM
	Require valid-user
</Directory>
</IfDefine>

# vim: ts=4 filetype=apache