summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2015-03-06 09:30:51 -0500
committerSimo Sorce <simo@redhat.com>2015-03-06 09:55:37 -0500
commite6d9a30c889fe042cf3ad5073519f348dbe924f0 (patch)
tree33e0f2c237b83f246bd03573f51cf85784249407 /README
parent7407b64481bc49ad552f9ba0ff2efe1f6fb0982e (diff)
downloadmod_auth_gssapi-e6d9a30c889fe042cf3ad5073519f348dbe924f0.tar.gz
mod_auth_gssapi-e6d9a30c889fe042cf3ad5073519f348dbe924f0.tar.xz
mod_auth_gssapi-e6d9a30c889fe042cf3ad5073519f348dbe924f0.zip
Remove forward basic auth and fix docs
Fixes #8
Diffstat (limited to 'README')
-rw-r--r--README18
1 files changed, 14 insertions, 4 deletions
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
+<Location /gssapi>
+ AuthType GSSAPI
+ AuthName "Login"
+ GssapiBasicAuth On
+ GssapiCredStore keytab:/etc/httpd/http.keytab
+ Require valid-user
+</Location>