You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/www-apache/mod_auth_kerb/files/11_mod_auth_kerb.conf

15 lines
338 B

<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