Cloudflare 和 Azure 集成
Cloudflare and Azure integration
我有一个 Azure Web 应用程序服务,我正在尝试使用 cloudflare 指向使用自定义域。我遵循与此类似的过程 https://www.petermorlion.com/setting-up-custom-domains-in-azure-with-cloudflare/
我 2 天前在 Go Daddy 注册了域名并修改了名称服务器。使用在线工具,它可以正确地通过 cloudflare。但是,即使 A 记录指向 Azure Web 应用程序服务 IP 地址,它仍然会出现 GoDaddy 默认页面。
我不确定我是否遗漏了什么或只是不耐烦。
感谢任何指导。
您似乎已将您的域指向 Cloudflare 域名服务器。那么你可以map your custom domain DNS records to Azure app service.
首先,您需要确保网络应用的应用服务计划必须是付费层(Azure Functions 的共享、基本、标准、高级或消费)。然后,您可以使用 CNAME
记录或 A
记录将自定义 DNS 名称映射到应用服务。
创建 CNAME
记录
Add a CNAME record to map a subdomain to the app's default domain name
(.azurewebsites.net, where is the name of your
app).
For the www.contoso.com
domain example, add a CNAME record that maps
the name www
to <app_name>.azurewebsites.net
.
创建A
记录
To map an A
record to an app, App Service requires two DNS records:
An A
record to map to the app's IP address. A TXT
record to map to the
app's default domain name <app_name>.azurewebsites.net
. App Service
uses this record only at configuration time, to verify that you own
the custom domain. After your custom domain is validated and
configured in App Service, you can delete this TXT
record.
添加相关记录后,您可以select 添加自定义域 应用服务设置。使用 WhatsmyDNS.net 验证您的域是否解析为您应用的 IP 地址。您可能需要等待一段时间。如果浏览器对新的自定义域名没有影响,可以清除缓存重新测试DNS解析。在 Windows 机器上,您使用 ipconfig /flushdns
清除缓存。
让我知道这是否有效或显示您的记录(隐藏敏感数据)以获得进一步帮助。
我有一个 Azure Web 应用程序服务,我正在尝试使用 cloudflare 指向使用自定义域。我遵循与此类似的过程 https://www.petermorlion.com/setting-up-custom-domains-in-azure-with-cloudflare/
我 2 天前在 Go Daddy 注册了域名并修改了名称服务器。使用在线工具,它可以正确地通过 cloudflare。但是,即使 A 记录指向 Azure Web 应用程序服务 IP 地址,它仍然会出现 GoDaddy 默认页面。
我不确定我是否遗漏了什么或只是不耐烦。
感谢任何指导。
您似乎已将您的域指向 Cloudflare 域名服务器。那么你可以map your custom domain DNS records to Azure app service.
首先,您需要确保网络应用的应用服务计划必须是付费层(Azure Functions 的共享、基本、标准、高级或消费)。然后,您可以使用 CNAME
记录或 A
记录将自定义 DNS 名称映射到应用服务。
创建 CNAME
记录
Add a CNAME record to map a subdomain to the app's default domain name (.azurewebsites.net, where is the name of your app).
For the
www.contoso.com
domain example, add a CNAME record that maps the namewww
to<app_name>.azurewebsites.net
.
创建A
记录
To map an
A
record to an app, App Service requires two DNS records:An
A
record to map to the app's IP address. ATXT
record to map to the app's default domain name<app_name>.azurewebsites.net
. App Service uses this record only at configuration time, to verify that you own the custom domain. After your custom domain is validated and configured in App Service, you can delete thisTXT
record.
添加相关记录后,您可以select 添加自定义域 应用服务设置。使用 WhatsmyDNS.net 验证您的域是否解析为您应用的 IP 地址。您可能需要等待一段时间。如果浏览器对新的自定义域名没有影响,可以清除缓存重新测试DNS解析。在 Windows 机器上,您使用 ipconfig /flushdns
清除缓存。
让我知道这是否有效或显示您的记录(隐藏敏感数据)以获得进一步帮助。