Package changes:
+www-apache/mod_auth_kerb-5.4
maybe chmod 0644 './apache2/modules.d/00_mod_userdir.conf'
maybe chmod 0644 './apache2/modules.d/00_mpm.conf'
maybe chmod 0644 './apache2/modules.d/10_mod_mem_cache.conf'
+maybe chmod 0644 './apache2/modules.d/11_mod_auth_kerb.conf'
maybe chmod 0644 './apache2/modules.d/20_mod_fastcgi.conf'
maybe chmod 0644 './apache2/modules.d/40_mod_ssl.conf'
maybe chmod 0644 './apache2/modules.d/45_mod_dav.conf'
--- /dev/null
+<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