An Azure service that provides a cloud content delivery network with threat protection.
Hello @Luis Nishimori
when a custom domain shows up as Rejected in Azure Front Door it means the certificate authority actually refused to issue the managed certificate for your domain. It isn’t just a DNS lookup problem—it’s a CA-level rejection. Here’s what you can check and try:
Click the “Rejected” status in the portal
- In your Front Door profile under Settings → Domains, click the domain name, then click the Rejected link.
- On the validation page, hit Regenerate. This gives you a fresh TXT validation token.
Verify you’re using the correct TXT record format
- For Front Door (both Classic and Standard/Premium), the TXT record name must be
_dnsauth.<your-subdomain>(notasuidor any other prefix). - Paste the new token exactly as shown in the portal.
- Set TTL to something low (e.g. 3600 seconds) so changes propagate quickly.
Check global propagation
- Use a tool like https://dnschecker.org/ to confirm your
_dnsauthTXT record is visible worldwide. - Remember stale DNS caches can linger, so you might need to wait up to an hour (TTL) or flush your local DNS cache (
ipconfig /flushdns).
Make sure there are no conflicting DNS records
- Don’t have other TXT records or CNAME/A records for the same name that could confuse the CA check.
- Confirm your CNAME for traffic routing points only to your Front Door endpoint (for example,
contoso.z01.azurefd.netor similar).
Re-validate in the portal
- After DNS propagates, go back to your domain in Front Door and click Refresh (or Retry).
- If the record matches what Front Door expects, the status should go to Approved within minutes.
Reference list:
- Domains in Azure Front Door → Domain validation states: https://learn.microsoft.com/azure/frontdoor/domain#domain-validation
- Add a custom domain to Azure Front Door: https://learn.microsoft.com/azure/frontdoor/front-door-custom-domain
- Troubleshoot custom domain problems in App Service (DNS record patterns): https://learn.microsoft.com/azure/app-service/troubleshoot-domain-ssl-certificates#custom-domain-problems
If the above steps didn't fix the issue, could you please check the private message and share the requested details there?
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".