diff options
author | Sean McGivern <sean@gitlab.com> | 2017-05-09 20:40:19 +0100 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2017-05-11 09:20:11 +0100 |
commit | 3c546acf78408087b5062be67ae6b05650e0f27e (patch) | |
tree | 0ac538aa9b0786dbac0317693dafa47cf8d01012 /doc | |
parent | 4067dd4f84681dd109fb8e1957b6327b4db20193 (diff) | |
download | gitlab-ce-3c546acf78408087b5062be67ae6b05650e0f27e.tar.gz |
Allow disabling usage ping in `gitlab.yml`
Setting `usage_ping_enabled` to false in `gitlab.yml`:
1. Disables the usage ping, regardless of the value stored in the database.
2. Prevents the usage ping from being enabled through the admin panel. It can
only be enabled by either removing the line from `gitlab.yml` and configuring
through the admin panel, or setting it to true in `gitlab.yml`.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/user/admin_area/settings/usage_statistics.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/user/admin_area/settings/usage_statistics.md b/doc/user/admin_area/settings/usage_statistics.md index 733e70ca9bf..6198d4864fa 100644 --- a/doc/user/admin_area/settings/usage_statistics.md +++ b/doc/user/admin_area/settings/usage_statistics.md @@ -89,6 +89,24 @@ By default, usage ping is opt-out. If you want to deactivate this feature, go to the Settings page of your administration panel and uncheck the Usage ping checkbox. +To disable the usage ping and prevent it from being configured from the +administration panel, Omnibus installs can set the following in +[`gitlab.rb`](https://docs.gitlab.com/omnibus/settings/configuration.html#configuration-options): + +```ruby +gitlab_rails['usage_ping_enabled'] = false +``` + +And source installs can set the following in `gitlab.yml`: + +```yaml +production: &base + # ... + gitlab: + # ... + usage_ping_enabled: false +``` + ## Privacy policy GitLab Inc. does **not** collect any sensitive information, like project names |