From e3c419d25d3638fa20f5dc35c4fbc773651e60bd Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sat, 10 Feb 2018 21:28:49 -0800 Subject: [PATCH] modules/federation/send: Increase the PUT payload_max. --- modules/federation/send.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/federation/send.cc b/modules/federation/send.cc index 7291bccf2..94834e8db 100644 --- a/modules/federation/send.cc +++ b/modules/federation/send.cc @@ -155,7 +155,8 @@ resource::method method_put { send_resource, "PUT", handle_put, { - method_put.VERIFY_ORIGIN + method_put.VERIFY_ORIGIN, + 4_MiB // larger = HTTP 413 //TODO: conf } };