diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-11-12 12:06:18 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-11-12 12:06:18 +0000 |
commit | 1b7381e998ff4b33ec8f633766030082e95f10c8 (patch) | |
tree | 952eb7afc179cdf64cafedc7f23384741a51661b /doc | |
parent | 7801d133b6c33917a3a151c7a8db5243b148a487 (diff) | |
download | gitlab-ce-1b7381e998ff4b33ec8f633766030082e95f10c8.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/deployments.md | 27 | ||||
-rw-r--r-- | doc/user/project/pages/custom_domains_ssl_tls_certification/index.md | 16 |
2 files changed, 43 insertions, 0 deletions
diff --git a/doc/api/deployments.md b/doc/api/deployments.md index 27254c42e3a..f4264866014 100644 --- a/doc/api/deployments.md +++ b/doc/api/deployments.md @@ -62,6 +62,15 @@ Example of response "twitter": "", "website_url": "", "organization": "" + }, + "pipeline": { + "created_at": "2016-08-11T02:12:10.222Z", + "id": 36, + "ref": "master", + "sha": "99d03678b90d914dbb1b109132516d71a4a03ea8", + "status": "success", + "updated_at": "2016-08-11T02:12:10.222Z", + "web_url": "http://gitlab.dev/root/project/pipelines/12" } }, "environment": { @@ -122,6 +131,15 @@ Example of response "twitter": "", "website_url": "", "organization": "" + }, + "pipeline": { + "created_at": "2016-08-11T07:43:52.143Z", + "id": 37, + "ref": "master", + "sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a", + "status": "success", + "updated_at": "2016-08-11T07:43:52.143Z", + "web_url": "http://gitlab.dev/root/project/pipelines/13" } }, "environment": { @@ -219,6 +237,15 @@ Example of response "created_at": "2016-08-11T13:28:26.000+02:00", "message": "Merge branch 'rename-readme' into 'master'\r\n\r\nRename README\r\n\r\n\r\n\r\nSee merge request !2" }, + "pipeline": { + "created_at": "2016-08-11T07:43:52.143Z", + "id": 42, + "ref": "master", + "sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a", + "status": "success", + "updated_at": "2016-08-11T07:43:52.143Z", + "web_url": "http://gitlab.dev/root/project/pipelines/5" + } "runner": null } } diff --git a/doc/user/project/pages/custom_domains_ssl_tls_certification/index.md b/doc/user/project/pages/custom_domains_ssl_tls_certification/index.md index 326a2d302d2..2f16606c5a8 100644 --- a/doc/user/project/pages/custom_domains_ssl_tls_certification/index.md +++ b/doc/user/project/pages/custom_domains_ssl_tls_certification/index.md @@ -169,6 +169,22 @@ from the GitLab project. in place: your domain will be periodically reverified, and may be 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 You can add more than one alias (custom domains and subdomains) to the same project. |