为多租户应用程序服务配置Azure应用程序网关

时间:2018-09-08 08:01:10

标签: c# azure azure-application-gateway

我有 application1.Azurewebsites.net application2.Azurewebsites.net ,并且我想使用 Azure Application Gateway ,我遵循了{ {3}}我能够针对一个应用程序执行此操作,但是没有关于如何针对多个应用程序实现相同功能的文档,设置该应用程序后,我立即尝试进行多站点安装,我从应用程序网关获得了400条响应端点我的后端池显示健康状态。

用于在网关中设置多个应用程序。

BackEnd Pool
App Services -> app1 (BackEndpool1)
App Services -> app2 (BackEndpool2)


httpsettings
setting1 => port 80 , use appservices , customprobe (httpsettings1)
setting2 => port 80 , use appservices , customprobe (httpsettings2)


Listeners
Multisite => fronendport 80 => hostname = app1 (Listeners1)
Multisite => fronendport 80 => hostname = app2 (Listeners2)

Rules 
(Listeners1) -> (BackEndpool1) -> (httpsettings1)
(Listeners2) -> (BackEndpool2) -> (httpsettings2)

1 个答案:

答案 0 :(得分:0)

愚蠢的我,我错过了为应用程序1和app2添加应用程序网关的CName的步骤

相关问题