]> Frank Brehm's Git Trees - config/uhu1/etc.git/commitdiff
committing changes in /etc after emerge run
authorfrank <frank@uhu1.uhu-banane.de>
Sun, 29 Jan 2012 12:11:19 +0000 (13:11 +0100)
committerroot <root@uhu1.uhu-banane.de>
Sun, 29 Jan 2012 12:11:19 +0000 (13:11 +0100)
Package changes:
+www-apache/mod_auth_kerb-5.4

.etckeeper
apache2/modules.d/11_mod_auth_kerb.conf [new file with mode: 0644]

index 043aa88fe57c7d88afa330b181c26c0d3d9649c9..6f32b850c33b2cab1b708902e560f862b8f33bd8 100755 (executable)
@@ -60,6 +60,7 @@ maybe chmod 0644 './apache2/modules.d/00_mod_status.conf'
 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'
diff --git a/apache2/modules.d/11_mod_auth_kerb.conf b/apache2/modules.d/11_mod_auth_kerb.conf
new file mode 100644 (file)
index 0000000..e567274
--- /dev/null
@@ -0,0 +1,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