# HG changeset patch # User Igor Sysoev # Date 1218994728 0 # Node ID 774bef502c78d58f821de297be80f1859ca02059 # Parent 61a09532e31075d940e1bdeb3d8fe2594ad4655a ignore NGX_EACCES error while directory test diff --git a/src/http/modules/ngx_http_index_module.c b/src/http/modules/ngx_http_index_module.c --- a/src/http/modules/ngx_http_index_module.c +++ b/src/http/modules/ngx_http_index_module.c @@ -309,6 +309,19 @@ ngx_http_index_test_dir(ngx_http_request return ngx_http_index_error(r, clcf, dir.data, NGX_ENOENT); } + if (of.err == NGX_EACCES) { + + *last = c; + + /* + * ngx_http_index_test_dir() is called after the first index + * file testing has returned an error distinct from NGX_EACCES. + * This means that directory searching is allowed. + */ + + return NGX_OK; + } + ngx_log_error(NGX_LOG_CRIT, r->connection->log, of.err, ngx_open_file_n " \"%s\" failed", dir.data); }