summaryrefslogtreecommitdiff
path: root/doc/administration
diff options
context:
space:
mode:
Diffstat (limited to 'doc/administration')
-rw-r--r--doc/administration/index.md1
-rw-r--r--doc/administration/user_settings.md35
2 files changed, 0 insertions, 36 deletions
diff --git a/doc/administration/index.md b/doc/administration/index.md
index 5f368ea8d49..b723edfc78f 100644
--- a/doc/administration/index.md
+++ b/doc/administration/index.md
@@ -41,7 +41,6 @@ Learn how to install, configure, update, and maintain your GitLab instance.
- [System hooks](../system_hooks/system_hooks.md): Notifications when users, projects and keys are changed.
- [Security](../security/README.md): Learn what you can do to further secure your GitLab instance.
- [Usage statistics, version check, and usage ping](../user/admin_area/settings/usage_statistics.md): Enable or disable information about your instance to be sent to GitLab, Inc.
-- [Global user settings](user_settings.md): Configure instance-wide user permissions.
- [Polling](polling.md): Configure how often the GitLab UI polls for updates.
- [GitLab Pages configuration](pages/index.md): Enable and configure GitLab Pages.
- [GitLab Pages configuration for GitLab source installations](pages/source.md): Enable and configure GitLab Pages on
diff --git a/doc/administration/user_settings.md b/doc/administration/user_settings.md
deleted file mode 100644
index f9654655949..00000000000
--- a/doc/administration/user_settings.md
+++ /dev/null
@@ -1,35 +0,0 @@
-# Modifying global user settings
-
-GitLab administrators can modify user settings for the entire GitLab instance.
-
-## Disallow users creating top-level groups
-
-By default, new users can create top-level groups. To disable this, modify the appropriate configuration file.
-
-For Omnibus installations, add the following to `/etc/gitlab/gitlab.rb`:
-
-```ruby
-gitlab_rails['gitlab_default_can_create_group'] = false
-```
-
-For source installations, uncomment the following line in `config/gitlab.yml`:
-
-```yaml
-# default_can_create_group: false # default: true
-```
-
-## Disallow users changing usernames
-
-By default, new users can change their usernames. To disable this, modify the appropriate configuration file.
-
-For Omnibus installations, add the following to `/etc/gitlab/gitlab.rb`:
-
-```ruby
-gitlab_rails['gitlab_username_changing_enabled'] = false
-```
-
-For source installations, uncomment the following line in `config/gitlab.yml`:
-
-```yaml
-# username_changing_enabled: false # default: true - User can change her username/namespace
-```