1

这就是我所做的,

在标准层创建了一个 Azure 网站 ( http://myapp1.azurewebsites.net )

配置 Azure 流量管理器并将端点添加为 Azure 端点。Trafficmanager 路由到网站。好的!

删除端点并添加端点作为外部端点。Trafficmanager 路由到 404 页面。我提供了 FQDN(完全限定域名)为 myapp1.azurewebsites.net。

它有什么问题?Azure 是否不允许将 .azurewebsites.net 站点定义为端点 url?

端点详细信息,状态 - 已启用监视器状态 - 降级类型 - 外部端点

*在此处输入图片描述*

完整的错误页面详细信息,

Error 404 - Web app not found.

The web app you have attempted to reach is not available in this Microsoft Azure App Service region. This could be due to one of several reasons:

1. The web app owner has registered a custom domain to point to the Microsoft Azure App Service, but has not yet configured Azure to recognize it. Click here to read more.

2. The web app owner has moved the web app to a different region, but the DNS cache is still directing to the old IP Address that was used in the previous region. Click here to read more.
4

2 回答 2

3

使用网站时,网站需要知道 DNS 请求的“主机”标头中预期的域名。这是用户在浏览器中键入的域名。

当您在流量管理器中添加一个网站作为端点时,流量管理器域名(例如 mysite.trafficmanager.net)会自动添加为您的网站中的自定义域名。当您删除网站端点时,它会再次被删除。

但是,如果您使用外部端点类型,则不会发生这种情况。由于网站无法识别主机头中的域名,因此返回 404 错误。

为此,您需要使用 CNAME 在流量管理器前面放置一个虚拟域名,在您的网站中注册该虚拟域名,并在您的浏览器中使用该虚拟域名。(您无法手动将流量管理器域名添加到网站,因为您无法完成网站要求的所有权证明验证。)

于 2016-04-22T09:19:47.237 回答
0

外部终结点需要位于 Azure 网站之外。

于 2016-04-22T03:31:40.173 回答