Remove 30MB upload limit on IIS express

Viewed 12936

Does anyone know how to remove the 30MB upload limit, specifically for IIS Express?

I've tried editing the applicationhost.config and

 <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="1050000"></requestLimits>
      </requestFiltering>
    </security>

<location path="api/media/AsyncUpload">
    <system.web>
      <httpRuntime maxRequestLength="1050000" /> 
<!-- The size specified is in kilobytes. The default is 4096 KB (4 MB). 1gb = 1048576 -->
        </system.web>
      </location>

Seem to be set correctly?

Any ideas?

1 Answers
Related