summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-12-09 06:37:41 +0000
committerIgor Sysoev <igor@sysoev.ru>2009-12-09 06:37:41 +0000
commit29b5a1378460c746a9e9eec7110df31e845b31b2 (patch)
tree682772fece483f9fbdf144db30c821cf7bb1b9f6
parent77304c6a2c8fe164faedc1bd55430934f9992690 (diff)
downloadnginx-29b5a1378460c746a9e9eec7110df31e845b31b2.tar.gz
nginx-29b5a1378460c746a9e9eec7110df31e845b31b2.tar.bz2
default large_client_header_buffers' buffer size should be 8K as compatible
with Apache's one
Diffstat (limited to '')
-rw-r--r--src/http/ngx_http_core_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c
index 1766e1298..7de430bc4 100644
--- a/src/http/ngx_http_core_module.c
+++ b/src/http/ngx_http_core_module.c
@@ -2828,7 +2828,7 @@ ngx_http_core_merge_srv_conf(ngx_conf_t *cf, void *parent, void *child)
prev->client_header_buffer_size, 1024);
ngx_conf_merge_bufs_value(conf->large_client_header_buffers,
prev->large_client_header_buffers,
- 4, ngx_pagesize);
+ 4, 8192);
if (conf->large_client_header_buffers.size < conf->connection_pool_size) {
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,