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>
<!-- 2 MB in bytes -->
<requestLimits maxAllowedContentLength="2000000" />
</requestFiltering>
</security>
</system.webServer>
</configuration>Hosting on Umbraco Cloud
Using Kestrel

External Server Configurations
Last updated
Was this helpful?