mirror of
https://github.com/jbranchaud/til
synced 2026-01-16 13:38:02 +00:00
Compare commits
4 Commits
ecf78bd0d6
...
24940ed99f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
24940ed99f | ||
|
|
9dcd9daf0a | ||
|
|
5615da920f | ||
|
|
c60c63f554 |
@@ -10,7 +10,7 @@ pairing with smart people at Hashrocket.
|
||||
|
||||
For a steady stream of TILs, [sign up for my newsletter](https://crafty-builder-6996.ck.page/e169c61186).
|
||||
|
||||
_1525 TILs and counting..._
|
||||
_1526 TILs and counting..._
|
||||
|
||||
---
|
||||
|
||||
@@ -191,7 +191,7 @@ _1525 TILs and counting..._
|
||||
- [Aliasing An Ansible Host](devops/aliasing-an-ansible-host.md)
|
||||
- [Allow Cross-Origin Requests To Include Cookies](devops/allow-cross-origin-requests-to-include-cookies.md)
|
||||
- [Allow HTTPS Through Your UFW Firewall](devops/allow-https-through-your-ufw-firewall.md)
|
||||
- [Check For Cached Site Assocation File For iOS](devops/check-for-cached-site-association-file-for-ios.md)
|
||||
- [Check For Cached Site Association File For iOS](devops/check-for-cached-site-association-file-for-ios.md)
|
||||
- [Check The Status of All Services](devops/check-the-status-of-all-services.md)
|
||||
- [Check The Syntax Of nginx Files](devops/check-the-syntax-of-nginx-files.md)
|
||||
- [Connect To An RDS PostgreSQL Database](devops/connect-to-an-rds-postgresql-database.md)
|
||||
@@ -458,6 +458,7 @@ _1525 TILs and counting..._
|
||||
- [Get Random Images From Unsplash](internet/get-random-images-from-unsplash.md)
|
||||
- [Search Tweets By Author](internet/search-tweets-by-author.md)
|
||||
- [Show All Pivotal Stories With Blockers](internet/show-all-pivotal-stories-with-blockers.md)
|
||||
- [Verify Site Ownership With DNS Record](internet/verify-site-ownership-with-dns-record.md)
|
||||
|
||||
### Java
|
||||
|
||||
@@ -733,7 +734,7 @@ _1525 TILs and counting..._
|
||||
- [Check If Clusters Are Upgrade Compatible](postgres/check-if-clusters-are-upgrade-compatible.md)
|
||||
- [Check If The Local Server Is Running](postgres/check-if-the-local-server-is-running.md)
|
||||
- [Check If User Role Exists For Database](postgres/check-if-user-role-exists-for-database.md)
|
||||
- [Check Table For Any Oprhaned Records](postgres/check-table-for-any-orphaned-records.md)
|
||||
- [Check Table For Any Orphaned Records](postgres/check-table-for-any-orphaned-records.md)
|
||||
- [Checking Inequality](postgres/checking-inequality.md)
|
||||
- [Checking The Type Of A Value](postgres/checking-the-type-of-a-value.md)
|
||||
- [Clear The Screen In psql](postgres/clear-the-screen-in-psql.md)
|
||||
|
||||
28
internet/verify-site-ownership-with-dns-record.md
Normal file
28
internet/verify-site-ownership-with-dns-record.md
Normal file
@@ -0,0 +1,28 @@
|
||||
# Verify Site Ownership With DNS Record
|
||||
|
||||
To run your site through Google Search Console and get detailed reports, you
|
||||
need to verify that you own the site. There are several manual ways of doing
|
||||
this that involve sticking a value unique to your URL in a file or header tag.
|
||||
There is a better way though.
|
||||
|
||||
By adding a TXT DNS record wherever you domain's DNS is managed, you can prove
|
||||
to Google that you own the domain. That verification applies to all paths and
|
||||
subdomains of that domain.
|
||||
|
||||
Some providers like Cloudflare have a mostly-automated process for this that
|
||||
Google can hook into as long as you grant permission via OAuth.
|
||||
|
||||
You can also manually create the TXT record if necessary.
|
||||
|
||||
Either way, it will look something like:
|
||||
|
||||
```bash
|
||||
!dig -t TXT visualmode.dev
|
||||
|
||||
;; ANSWER SECTION:
|
||||
visualmode.dev. 377 IN TXT "google-site-verification=MBZ2S2fhnh2gHRxFniRrYW-O6mdyimJDRFj-f
|
||||
vblwtk"
|
||||
```
|
||||
|
||||
More details are provided in the [Google Search Console
|
||||
docs](https://support.google.com/webmasters/answer/9008080?hl=en#domain_name_verification).
|
||||
Reference in New Issue
Block a user