Commit 388c7524 authored by Marcia Ramos's avatar Marcia Ramos

Merge branch 'docs-pages-tbs-domain-verif' into 'master'

Docs: add troubleshooting for domain verification

Closes #28635

See merge request gitlab-org/gitlab!19885
parents 4e342eaf 62cf0c55
...@@ -169,6 +169,22 @@ from the GitLab project. ...@@ -169,6 +169,22 @@ from the GitLab project.
in place: your domain will be periodically reverified, and may be in place: your domain will be periodically reverified, and may be
disabled if the record is removed. disabled if the record is removed.
##### Troubleshooting Pages domain verification
To manually verify that you have properly configured the domain verification
`TXT` DNS entry, you can run the following command in your terminal:
```
dig _gitlab-pages-verification-code.<YOUR-PAGES-DOMAIN> TXT
```
Expect the output:
```
;; ANSWER SECTION:
_gitlab-pages-verification-code.<YOUR-PAGES-DOMAIN>. 300 IN TXT "gitlab-pages-verification-code=<YOUR-VERIFICATION-CODE>"
```
### Adding more domain aliases ### Adding more domain aliases
You can add more than one alias (custom domains and subdomains) to the same project. You can add more than one alias (custom domains and subdomains) to the same project.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment