increase max POST data limit to 64 KB

this matches also our wbuf_max settings of our AnyEvent handle

Tested with 1000 parallel started dummy POST request with 64KB
payload, wh

It should not be too problematic to increase the limit

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2017-05-12 09:37:49 +02:00 committed by Wolfgang Bumiller
parent e703c558be
commit 967dcb7682

View File

@ -47,7 +47,7 @@ use Data::Dumper;
my $limit_max_headers = 30;
my $limit_max_header_size = 8*1024;
my $limit_max_post = 16*1024;
my $limit_max_post = 64*1024;
my $known_methods = {
GET => 1,