Reputation: 13673
I have a Heroku app on a custom domain, as described in their Dev Center article about custom domains.
For Google Webmaster Tools, I'd like to verify ownership using the DNS method with a TXT record.
Naturally, these two records would be for the same subdomain.
Can I do this? And if so, how?
Upvotes: 2
Views: 5398
Reputation: 1047
Yep, just add a TXT record through your DNS provider. One way to verify is via dig:
$ dig foo.com TXT
...
foo.com. 1800 IN TXT "google-site-verification=XXXXXXXXXXXX"
Upvotes: 1