IIS 上传大文件时http响应502

IIS 上传大文件时http响应502

我无法通过 IIS 在我的 net.core API 上上传大文件(1,16 go)。

我在我的 web.config 上设置了这个值

<httpRuntime executionTimeout="100000" maxRequestLength="2000000" />

<security>
   <requestFiltering allowDoubleEscaping="true">
       <requestLimits maxAllowedContentLength="2000000000" />
  </requestFiltering>
</security>

<aspNetCore processPath="dotnet" arguments=".\ConfigurationNode.dll" **requestTimeout="00:20:00"** stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="true" />

无论我设置什么值:

请求超时

我在时间结束时得到一个 http 代码 502,例如如果我在 10 分钟后输入 10 分钟,我就会得到代码 502。

DevTools 计时选项卡

感谢大家

编辑:我刚刚意识到我可以上传的最大尺寸是 128mo

相关内容