Make proxy_headers_hash_bucket_size and proxy_headers_hash_max_size configurable in the nginx controller

See https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_headers_hash_bucket_size and https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_headers_hash_max_size
This commit is contained in:
Bastian Hofmann 2017-07-13 13:45:02 +02:00 committed by Bastian Hofmann
parent eb5a530d78
commit 38d198bfde
3 changed files with 22 additions and 0 deletions

View file

@ -76,6 +76,9 @@ http {
server_names_hash_bucket_size {{ $cfg.ServerNameHashBucketSize }};
map_hash_bucket_size {{ $cfg.MapHashBucketSize }};
proxy_headers_hash_max_size {{ $cfg.ProxyHeadersHashMaxSize }};
proxy_headers_hash_bucket_size {{ $cfg.ProxyHeadersHashBucketSize }};
variables_hash_bucket_size {{ $cfg.VariablesHashBucketSize }};
variables_hash_max_size {{ $cfg.VariablesHashMaxSize }};