Commit 1c0e14e9 authored by Tollef Fog Heen's avatar Tollef Fog Heen

Bump the value of http_resp_hdr_len and http_req_hdr_len

We have seen larger than 512 values in the wild, so increase the
default values a bit to give us breathing room.
parent 87424219
......@@ -525,7 +525,7 @@ static const struct parspec input_parspec[] = {
"Maximum length of any HTTP client request header we will "
"allow. The limit is inclusive its continuation lines.\n",
0,
"512", "bytes" },
"2048", "bytes" },
{ "http_req_size", tweak_uint, &master.http_req_size,
256, UINT_MAX,
"Maximum number of bytes of HTTP client request we will deal "
......@@ -541,7 +541,7 @@ static const struct parspec input_parspec[] = {
"Maximum length of any HTTP backend response header we will "
"allow. The limit is inclusive its continuation lines.\n",
0,
"512", "bytes" },
"2048", "bytes" },
{ "http_resp_size", tweak_uint, &master.http_resp_size,
256, UINT_MAX,
"Maximum number of bytes of HTTP backend resonse we will deal "
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment