diff options
Diffstat (limited to 'src/http/ngx_http_core_module.c')
-rw-r--r-- | src/http/ngx_http_core_module.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 7d53ca155..d44933ca3 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -1172,6 +1172,10 @@ ngx_http_core_try_files_phase(ngx_http_request_t *r, continue; } + if (!of.is_file) { + continue; + } + path.len -= root; path.data += root; |