Usuń limit przesyłania 30 MB na usługi IIS express

Czy ktoś wie, jak usunąć limit przesyłania 30 MB, w szczególności dla IIS Express?

Próbowałem edytować applicationhost.config i

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

Wydaje się być poprawnie ustawiony?

Jakieś pomysły?

questionAnswers(1)

yourAnswerToTheQuestion