IIS7 Application Request Routing (arr reverse proxy) combined with managed module - time out

前端 未结 4 637
遥遥无期
遥遥无期 2021-02-04 10:55

I am trying to build a proxy that would serve requests to an internal site (hiding the origin) but at the same time inspect the packets and asynchronously post-process them.

4条回答
  •  梦毁少年i
    2021-02-04 11:36

    按照正常来说,再iis网站界面会有一个application request

    routing cache 的 icon, 可以点击 设置timeout 但是这里没有显示

    找到了 官方说明可以用命令行解决这个问题

    https://blogs.iis.net/richma/502-3-bad-gateway-the-operation-timed-out-with-iis-application-request-routing-arr ​ blogs.iis.net

    执行以下命令,然后重启下网站服务

    进入到C:\Windows\System32\inetsrv 打开管理员命令行工具执行以下命令

    appcmd.exe set config -section:system.webServer/proxy /timeout:"00:00:45" /commit:apphost

    重启下网站服务 我写的原文地址 https://zhuanlan.zhihu.com/p/157557980

提交回复
热议问题