ASP.NET Core MVC 502 bad gateway 超时如何处理
Posted zitjubiz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.NET Core MVC 502 bad gateway 超时如何处理相关的知识,希望对你有一定的参考价值。
在网页程序运行需要较长时间运行的时候,ASP.NET Core MVC会出现502 bad gateway请求超时情况。一般默认的超时时间都比较短,我们需要在 web.config 中配置一下。其中 requestTimeout 属性就是用来设置超时时长的。
服务器环境: Net Core 2.1.15
参考这篇文章: https://www.cnblogs.com/OpenCoder/p/10307882.html , 测试了一下,第三种方法在代码里设置超时是没有用的~~~
然后看第2种方法,看本地IIS Express的设定超时时间是23:00:00, 所以在服务器上也设置这个时间.
<?xml version="1.0" encoding="utf-8"?> <configuration> <system.webServer> <handlers> <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/> </handlers> <aspNetCore requestTimeout="23:00:00" processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\\logs\\stdout" forwardWindowsAuthToken="false"/> </system.webServer> </configuration>
以上是关于ASP.NET Core MVC 502 bad gateway 超时如何处理的主要内容,如果未能解决你的问题,请参考以下文章
ASP.NET Core RC2 IIS 在选项请求上返回 502
部署在 IIS 上的 ASP.NET Core 对长时间运行的请求返回 502 错误
ASP.Net 请求引发 502 Bad Gateway 或 TimeOut
IIS 错误 502.5 上的 ASP.NET Core 1.0
ASP.NET 4.5 在 ASP.NET Core 2.0 应用程序下的 Azure Web App 中将 502.5 作为虚拟应用程序抛出