Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-02-23 18:15:42 +0300
committerIgor Sysoev <igor@sysoev.ru>2009-02-23 18:15:42 +0300
commit20018efe0f30d6f725daa15df6216356fdf655a6 (patch)
tree275105b5952316e40685296645eb24b403342329 /src
parent49e140ed6c884208db2f6cfbdb197e5dc43d72d1 (diff)
add auth basic failure logging
Diffstat (limited to 'src')
-rw-r--r--src/http/modules/ngx_http_auth_basic_module.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/http/modules/ngx_http_auth_basic_module.c b/src/http/modules/ngx_http_auth_basic_module.c
index b09359d2a..fe9102287 100644
--- a/src/http/modules/ngx_http_auth_basic_module.c
+++ b/src/http/modules/ngx_http_auth_basic_module.c
@@ -126,6 +126,10 @@ ngx_http_auth_basic_handler(ngx_http_request_t *r)
rc = ngx_http_auth_basic_user(r);
if (rc == NGX_DECLINED) {
+
+ ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
+ "no user/password was provided for basic authentication");
+
return ngx_http_auth_basic_set_realm(r, &alcf->realm);
}
@@ -242,6 +246,10 @@ ngx_http_auth_basic_handler(ngx_http_request_t *r)
return ngx_http_auth_basic_crypt_handler(r, NULL, &pwd, &alcf->realm);
}
+ ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
+ "user \"%V\" was not found in \"%V\"",
+ &r->headers_in.user, &alcf->user_file);
+
return ngx_http_auth_basic_set_realm(r, &alcf->realm);
}
@@ -257,8 +265,8 @@ ngx_http_auth_basic_crypt_handler(ngx_http_request_t *r,
&encrypted);
ngx_log_debug3(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
- "rc: %d user: \"%V\" salt: \"%s\"",
- rc, &r->headers_in.user, passwd->data);
+ "rc: %d user: \"%V\" salt: \"%s\"",
+ rc, &r->headers_in.user, passwd->data);
if (rc == NGX_OK) {
if (ngx_strcmp(encrypted, passwd->data) == 0) {
@@ -268,6 +276,10 @@ ngx_http_auth_basic_crypt_handler(ngx_http_request_t *r,
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"encrypted: \"%s\"", encrypted);
+ ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
+ "user \"%V\": password mismatch",
+ &r->headers_in.user);
+
return ngx_http_auth_basic_set_realm(r, realm);
}