From dcee5483997bdc1897131a0057030228b0890f8c Mon Sep 17 00:00:00 2001 From: Jan Pazdziora Date: Wed, 8 Jan 2014 03:14:52 -0500 Subject: Add Kerberos authentication on /application/login, redirects to /application/login2 to show the form if it fails. --- auth_kerb.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 auth_kerb.conf diff --git a/auth_kerb.conf b/auth_kerb.conf new file mode 100644 index 0000000..70b65a6 --- /dev/null +++ b/auth_kerb.conf @@ -0,0 +1,14 @@ + +LoadModule auth_kerb_module modules/mod_auth_kerb.so + + + AuthType Kerberos + AuthName "Kerberos Login" + KrbMethodNegotiate On + KrbMethodK5Passwd Off + KrbAuthRealms EXAMPLE.COM + Krb5KeyTab /etc/http.keytab + require valid-user + ErrorDocument 401 'Kerberos authentication did not pass.' + + -- cgit