diff options
author | John Christopher Anderson <jchris@apache.org> | 2010-07-25 17:01:37 +0000 |
---|---|---|
committer | John Christopher Anderson <jchris@apache.org> | 2010-07-25 17:01:37 +0000 |
commit | 6121e10adfe0095247852565d860d99590be213e (patch) | |
tree | bfaed6041af464644f48d167481b249e706d0665 /src | |
parent | c30eeebc611adc13203ffa6a2c41d922bcc785e3 (diff) |
send a basic-auth popup header if require_valid_user=true, to prevent lock-out
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@979070 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/couchdb/couch_httpd.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/couchdb/couch_httpd.erl b/src/couchdb/couch_httpd.erl index faf14bcc..b531d3d6 100644 --- a/src/couchdb/couch_httpd.erl +++ b/src/couchdb/couch_httpd.erl @@ -750,7 +750,8 @@ error_headers(#httpd{mochi_req=MochiReq}=Req, Code, ErrorStr, ReasonStr) -> AuthRedirect -> case couch_config:get("couch_httpd_auth", "require_valid_user", "false") of "true" -> - {Code, []}; + % send the browser popup header no matter what if we are require_valid_user + {Code, [{"WWW-Authenticate", "Basic realm=\"server\""}]}; _False -> % if the accept header matches html, then do the redirect. else proceed as usual. case re:run(MochiReq:get_header_value("Accept"), "html", [{capture, none}]) of |