Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/integration/recaptcha.md')
-rw-r--r--doc/integration/recaptcha.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/integration/recaptcha.md b/doc/integration/recaptcha.md
index 48c83f1393b..1868711ca9c 100644
--- a/doc/integration/recaptcha.md
+++ b/doc/integration/recaptcha.md
@@ -1,6 +1,6 @@
# reCAPTCHA
-GitLab leverages [Google's reCAPTCHA](https://www.google.com/recaptcha/intro/index.html)
+GitLab leverages [Google's reCAPTCHA](https://www.google.com/recaptcha/about/)
to protect against spam and abuse. GitLab displays the CAPTCHA form on the sign-up page
to confirm that a real user, not a bot, is attempting to create an account.
@@ -36,5 +36,5 @@ proxy_set_header X-GitLab-Show-Login-Captcha 1;
In Omnibus GitLab, this can be configured via `/etc/gitlab/gitlab.rb`:
```ruby
-nginx['proxy_set_headers'] = { 'X-GitLab-Show-Login-Captcha' => 1 }
+nginx['proxy_set_headers'] = { 'X-GitLab-Show-Login-Captcha' => '1' }
```