Reputation: 13172
My case like this :
My website is stored on the portal azure
. So I need to copy the TXT
record into the DNS
configuration in the portal azure
How can I do it?
Update :
If I check DNS Zones in portal azure, it's like this :
Upvotes: 0
Views: 3427
Reputation: 4461
Have a look at the documentation Verify your domain with a TXT record first. To verify domain ownership you should add TXT verification record generated by Google to DNS zone of your domain, then wait for a while and run check. To do it you should know which company provides you DNS service.
To solve your issue you should follow steps below:
dig NS YOUR_DOMAIN_NAME
Type: TXT
Name/Host/Alias: @
Value/Answer/Destination: google-site-verification=VERIFICATION_CODE_GENERATED_BY_GOOGLE
Time to Live (TTL): 86400 or leave the default
MS=ms XXXXXXXX
with google-site-verification=CODE_PROVIDED_BY_GOOGLE
;UPDATE Accordingly to your update you use Cloudflare as a DNS service for your domain, because both DNS servers are related to Cloudflare: eric.ns.cloudflare.com
and tess.ns.cloudflare.com
. To add TXT record you should follow documentation. In addition, have a look at the instructions provided by Google.
UPDATE 2 In case you don't have access to your account at Cloudflare:
Upvotes: 1