Updating passwords docs

svn: r6527
This commit is contained in:
Jay McCarthy 2007-06-07 21:50:04 +00:00
parent a246e02d45
commit d39791dc43

View File

@ -182,6 +182,17 @@ that performs HTTP Basic authentication filtering.
@scheme[authentication-responder] is called with a @scheme[header] that @scheme[authentication-responder] is called with a @scheme[header] that
requests credentials. If they are, then @scheme[next-dispatcher] is requests credentials. If they are, then @scheme[next-dispatcher] is
invoked. invoked.
@; XXX Separate out password-file work
@scheme[password-file] is parsed as:
@schemeblock[(list ([domain : string?]
[path : string-regexp?]
(list [user : symbol?]
[pass : string?])
...)
...)]
For example:
@schemeblock['(("secret stuff" "/secret(/.*)?" (bubba "bbq") (|Billy| "BoB")))]
} }
@; ------------------------------------------------------------ @; ------------------------------------------------------------