I have a web application API which is published with IIS.
Clients upload files on my app (via PostMan) which I later process. It has been working fine. Now they tried to upload a large file of 70MB and they get 413 error.
I tried changing parts of web.config:
<system.webServer>
<serverRuntime uploadReadAheadSize="100000" />
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="30000000" />
</requestFiltering>
</security>
</system.webServer>
But I still get the same error. What am I missing?