I am working with Asp.Net Core 5.0 Web Api and IIS 10, I need to get file size unlimited to my Api, I have read a lot OF solutions
Increase upload file size in Asp.Net core
and l understand all of the solution(because the restriction of IIS) I need to add web.config as below
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="4294967295"/>
</requestFiltering>
</security>
</system.webServer>
but still I have a problem because the maxAllowedContentLength = uint/4294967295 and I want to upload unlimited file and this solution solve for 4GB and not more.
If anyone have any idea please help.
Thanks.