X-Git-Url: http://www.project-moonshot.org/gitweb/?p=mod_auth_gssapi.git;a=blobdiff_plain;f=README;h=6c374124ce25fc96203f42a7c9b7d2dbcc33e307;hp=903d1996e2c41b13ba3f6d7af4caea46458366c2;hb=e6d9a30c889fe042cf3ad5073519f348dbe924f0;hpb=7407b64481bc49ad552f9ba0ff2efe1f6fb0982e diff --git a/README b/README index 903d199..6c37412 100644 --- a/README +++ b/README @@ -176,9 +176,19 @@ Example: ### GssapiBasicAuth Allows the use of Basic Auth in conjunction with Negotiate. -Two modes are supported, direct usage of the received username and password -to try to acquire credentials via GSSAPI, or forwarding to following apache -module. +If the browser fails to use Negotiate is will instead fallback to Basic and +the username and password will be used to try to acquire credentials in the +module via GSSAPI. If credentials are acquire successfully then they are +validated agaist the server's keytab. + +Enable with: GssapiBasicAuth On +Default: GssapiBasicAuth Off Example: - GssapiBasicAuth Forward + + AuthType GSSAPI + AuthName "Login" + GssapiBasicAuth On + GssapiCredStore keytab:/etc/httpd/http.keytab + Require valid-user +