From 59c3aaa95d68771f19e26e1b5f81b13f8f1e41ca Mon Sep 17 00:00:00 2001 From: Jan Pazdziora Date: Wed, 21 Oct 2015 17:06:30 +0200 Subject: Add Kerberos authentication via mod_auth_gssapi on /application/login, redirects to /application/login2 to show the form if it fails. --- auth_kerb.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 auth_kerb.conf diff --git a/auth_kerb.conf b/auth_kerb.conf new file mode 100644 index 0000000..e76cb39 --- /dev/null +++ b/auth_kerb.conf @@ -0,0 +1,11 @@ + +LoadModule auth_gssapi_module modules/mod_auth_gssapi.so + + + AuthType GSSAPI + AuthName "Kerberos Login" + GssapiCredStore keytab:/etc/http.keytab + require valid-user + ErrorDocument 401 'Kerberos authentication did not pass.' + + -- cgit