diff options
author | Andrei Belov <defan@nginx.com> | 2014-03-25 18:49:28 +0400 |
---|---|---|
committer | Andrei Belov <defan@nginx.com> | 2014-03-25 18:49:28 +0400 |
commit | b1597fe2eabf2ebc09a6349c5c2de1672e7580c7 (patch) | |
tree | e9f92b92cf4b314ad76af7863777c0dadbc34e9b /src | |
parent | 2070abf51678acda21b57ea6bb99c640be65474c (diff) | |
download | nginx-b1597fe2eabf2ebc09a6349c5c2de1672e7580c7.tar.gz nginx-b1597fe2eabf2ebc09a6349c5c2de1672e7580c7.zip |
Increased default value of variables_hash_max_size.
Diffstat (limited to 'src')
-rw-r--r-- | src/http/ngx_http_core_module.c | 2 |
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 e60863788..ac83f58b6 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -3440,7 +3440,7 @@ ngx_http_core_init_main_conf(ngx_conf_t *cf, void *conf) ngx_align(cmcf->server_names_hash_bucket_size, ngx_cacheline_size); - ngx_conf_init_uint_value(cmcf->variables_hash_max_size, 512); + ngx_conf_init_uint_value(cmcf->variables_hash_max_size, 1024); ngx_conf_init_uint_value(cmcf->variables_hash_bucket_size, 64); cmcf->variables_hash_bucket_size = |