mirror of
https://github.com/nginx/nginx.git
synced 2024-12-23 15:40:03 -06:00
fix autoindex for "alias /"
This commit is contained in:
parent
d47063bd90
commit
4c89c09ad8
@ -181,7 +181,10 @@ ngx_http_autoindex_handler(ngx_http_request_t *r)
|
|||||||
}
|
}
|
||||||
|
|
||||||
allocated = path.len;
|
allocated = path.len;
|
||||||
path.len = last - path.data - 1;
|
path.len = last - path.data;
|
||||||
|
if (path.len > 1) {
|
||||||
|
path.len--;
|
||||||
|
}
|
||||||
path.data[path.len] = '\0';
|
path.data[path.len] = '\0';
|
||||||
|
|
||||||
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
|
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
|
||||||
|
@ -279,7 +279,7 @@ ngx_http_index_test_dir(ngx_http_request_t *r, ngx_http_core_loc_conf_t *clcf,
|
|||||||
ngx_open_file_info_t of;
|
ngx_open_file_info_t of;
|
||||||
|
|
||||||
c = *last;
|
c = *last;
|
||||||
if (c != '/') {
|
if (c != '/' || path == last) {
|
||||||
/* "alias" without trailing slash */
|
/* "alias" without trailing slash */
|
||||||
c = *(++last);
|
c = *(++last);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user