问题
click here for error details
my web.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<clear />
<add name="iisnode" path="app.js" verb="*" modules="iisnode" />
</handlers>
<httpErrors existingResponse="PassThrough" />
<httpProtocol>
<customHeaders>
<remove name="X-Powered-By" />
</customHeaders>
</httpProtocol>
<iisnode enableXFF="true" maxRequestBufferSize="52428800" loggingEnabled="true" />
<rewrite>
<rules>
<rule name="Node app">
<match url="/*" />
<action type="Rewrite" url="app.js" />
</rule>
</rules>
</rewrite>
<security>
<requestFiltering removeServerHeader="true">
<requestLimits maxAllowedContentLength="2097152000" />
</requestFiltering>
</security>
<webSocket enabled="false" />
</system.webServer>
</configuration>
the above code works fine in less than 250 files, but we have an error above 250 MB files
来源:https://stackoverflow.com/questions/61340153/http-error-500-1013-internal-server-error-while-uploading-more-than-250-mb-fil