How can I set maximum upload size for an ASP.NET Core MVC application?
In the past I was able to set it in web.config file like this:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800" />
</requestFiltering>
</security>
</system.webServer>