Does anyone know how to remove the 30 MB limit, especially for IIS Express?
I tried editing applicationhost.config and
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1050000"></requestLimits>
</requestFiltering>
</security>
<location path="api/media/AsyncUpload">
<system.web>
<httpRuntime maxRequestLength="1050000" />
</system.web>
</location>
Is it installed correctly?
Any ideas?
source
share