From 1725621e8a86aafb2db836c8581ea6998e118499 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Mon, 21 Nov 2011 07:31:59 +0000 Subject: Fixed "keepalive_disable". Patch by Alexander Usov. The bug has been introduced in r4267. --- src/http/ngx_http_core_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index ba5191069..96be42369 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -3267,12 +3267,12 @@ ngx_http_core_create_loc_conf(ngx_conf_t *cf) * clcf->auto_redirect = 0; * clcf->alias = 0; * clcf->gzip_proxied = 0; + * clcf->keepalive_disable = 0; */ clcf->client_max_body_size = NGX_CONF_UNSET; clcf->client_body_buffer_size = NGX_CONF_UNSET_SIZE; clcf->client_body_timeout = NGX_CONF_UNSET_MSEC; - clcf->keepalive_disable = NGX_CONF_UNSET_UINT; clcf->satisfy = NGX_CONF_UNSET_UINT; clcf->if_modified_since = NGX_CONF_UNSET_UINT; clcf->max_ranges = NGX_CONF_UNSET_UINT; -- cgit