Maximum Upload Size Settings
Information on how to change the default cap of upload size
Using IIS
<?xml version="1.0"?>
<configuration>
<system.webServer>
<security>
<requestFiltering>
<!-- ~ Below is the number of bytes allowed, 4GB is the maximum -->
<requestLimits maxAllowedContentLength="2000000" />
</requestFiltering>
</security>
</system.webServer>
</configuration>Using Kestrel
Last updated
Was this helpful?