Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hi Rutger,
I assume you want to add these .com custom domains to same web app you use for .nl. Please correct me if my assumption is wrong.
1. Please create below DNS records in your provider's portal for strixit.com domain:
| Record type | Host | Value | TTL |
|---|---|---|---|
| CAA | @ | 0 issue "digicert.com" | 600 |
| TXT | asuid | B75C0F28E6472764DF2C93D35BE9258C0EF76922F4A708B602DB36284181D88C | 600 |
| TXT | asuid.www | B75C0F28E6472764DF2C93D35BE9258C0EF76922F4A708B602DB36284181D88C | 600 |
| A | @ | 20.105.216.13 | 600 |
| CNAME | www | applicationserver-personalwebsites-aygtebdwg7dnfwhs.westeurope-01.azurewebsites.net | 600 |
To verify CAA record is correct, you may use dig command below in Azure Cloud Shell:
dig strixit.com caa
In output you should have answer section similar to below:
;; ANSWER SECTION:
strixit.com. 600 IN CAA 0 issue "digicert.com"
NOTE: digicert.com should be in quotes as shown above. With some DNS providers you need to enter the quotes in their portal while others you do not.
2. After successfully creating all DNS records above, please try to add .com custom domains (remove first if needed), create App Service Managed Certificates, and bindings. Once everything is working properly you can edit the DNS records and make TTLs a higher value. I have 600 to make troubleshooting quicker.
Please click Accept Answer and upvote if the above was helpful.
Thanks.
-TP