0

I am uploading 25 mb size of video using Kentico using Node.js I have tried all the way but I am getting "Request body larger than maxBodyLength limit" How can i resolve it?

Maulik Patel
  • 717
  • 1
  • 10
  • 22

1 Answers1

1

Please refer to this article to see some web config keys that can be updated in order to allow large files to be uploaded and staged.

Specifically you will want to update the maxRequestLength and maxAllowedContentLength keys.

probrandono
  • 528
  • 4
  • 8
  • Thanks for the answer but how to implement same thing in Node.js or javascript? – Maulik Patel Aug 13 '20 at 05:16
  • 1
    The above is more about web server setup rather than coding. See also https://learn.microsoft.com/en-us/iis/configuration/system.webServer/security/requestFiltering/requestLimits/ – jurajo Aug 13 '20 at 09:23