Gitlab Pages: Domain Verification Failed

This morning I received emails for each of my Gitlab pages hosted on user domains, stating that the domain check failed.

This is great because I don't think I ever tested them in the first place - well on Gitlab for that.

When I go over Settings> Pages> Domain_Details in each repo, I see instructions for creating the following entry:

_gitlab-pages-verification-code.blog.ollyfg.com TXT gitlab-pages-verification-code={32_digit_long_code}

When I create this record and click the "Check ownership" button, I get the message "Failed to verify the ownership of the domain."

I found that the record is set, and calling

dig -t txt +short _gitlab-pages-verification-code.blog.ollyfg.com

Return:

"gitlab-pages-verification-code={same_32_digit_long_code}"

Is this a bug in gitlab? Am I doing something wrong?

Thank!

+7
source share
3

, . , , .

, : https://gitlab.com/help/user/project/pages/getting_started_part_three.md#dns-txt-record

, : blog.ollyfg.com : _gitlab-pages-verification-code.blog.ollyfg.com

+3

subdomain.domain.com namespace.gitlab.io/project-name Gandi.

CNAME TXT GitLab " Settings > Pages > New Domain, . mysubdomain.mydomain.com CNAME mynamespace.gitlab.io. _gitlab-pages-verification-code.mysubdomain.mydomain.com TXT gitlab-pages-verification-code=00112233445566778899aabbccddeeff.

, mysubdomain CNAME mynamespace.gitlab.io. ( ping mysubdomain.mydomain.com) (ping mysubdomain.mydomain.com ).

A TXT . :

mysubdomain 1800 IN A 35.185.44.232
mysubdomain 1800 IN TXT "gitlab-pages-verification-code=00112233445566778899aabbccddeeff"

, IP- namespace.gitlab.io 52.167.214.135 35.185.44.232 2018 .

30 , .

GitLab , " Verify.

+3

( ) . , GoDaddy:

:

: @

: 35,185.44.232

CNAME:

: example.com

: username.gitlab.io

TXT Record:

: @

Value : gitlab-pages verification code = 00112233445566778899aabbccddeeff

Checked with Gitlab as well:

dig -t txt +short example.com

0
source

Source: https://habr.com/ru/post/1693942/


All Articles