Entfernen Sie das Upload-Limit von 30 MB für IIS Express

Weiß jemand, wie man das Upload-Limit von 30 MB entfernt, speziell für IIS Express?

Ich habe versucht, die applicationhost.config zu bearbeiten und

 <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>

Scheint richtig eingestellt zu sein?

Irgendwelche Ideen?

Antworten auf die Frage(1)

Ihre Antwort auf die Frage