我在MS文档后面设置了一个新的应用程序网关。我已经配置了后端池。它通过FQDN连接到App Service。不知何故,每当我浏览到应用程序网关时,我立即收到502。直接浏览网站没有任何问题。
答案 0 :(得分:3)
我已经解决了这个问题。这是解决方案。
如果您的后端池中有Web应用程序,则无法通过Azure门户设置运行状况探测。
您需要通过资源模板或Powershell进行设置。关键是您需要将主机字段留空并设置-PickHostNameFromBackendAddress
属性。
The two lines below did the magic to make the 502s go away
# Create a probe with the PickHostNameFromBackendHttpSettings switch for web apps
$probeconfig = New-AzureRmApplicationGatewayProbeConfig -name webappprobe -Protocol Http -Path / -Interval 30 -Timeout 120 -UnhealthyThreshold 3 -PickHostNameFromBackendHttpSettings
# Define the backend http settings
$poolSetting = New-AzureRmApplicationGatewayBackendHttpSettings -Name appGatewayBackendHttpSettings -Port 80 -Protocol Http -CookieBasedAffinity Disabled -RequestTimeout 120 -PickHostNameFromBackendAddress -Probe $probeconfig