# HG changeset patch # User Igor Sysoev # Date 1234632386 0 # Node ID 7b0711452b345ecaf3b54ad3036a072a19096306 # Parent 23706c19fab87346f24c152743c74024adaa1fc0 set content-type for try_files' choice diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -1197,6 +1197,11 @@ ngx_http_core_try_files_phase(ngx_http_r ngx_memcpy(p, name, path.len); } + if (ngx_http_set_exten(r) != NGX_OK) { + ngx_http_finalize_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR); + return NGX_OK; + } + ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, "try file uri: \"%V\"", &r->uri);