How to set maximum download size for ASP.NET CORE application?
In the past, I was able to install it in the web.config as follows:
<system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="52428800" /> </requestFiltering> </security> </system.webServer>
Adam smith
source share