diff options
author | Sanad Liaquat <sliaquat@gitlab.com> | 2019-03-15 11:52:39 +0500 |
---|---|---|
committer | Sanad Liaquat <sliaquat@gitlab.com> | 2019-03-15 11:52:39 +0500 |
commit | e73f8713812b912b3b0244e99b6a18b9422a2d4d (patch) | |
tree | de67e0ab7931961752caeccef78f393365391f81 /doc/administration | |
parent | 82c0816d3fdd96412605845fa337b74b6a3534c4 (diff) | |
download | gitlab-ce-qa-artillery-io-script.tar.gz |
Add Load testing script for artillery.ioqa-artillery-io-script
Also add rake tasks that makes use of existing performance data
genertion task.
Diffstat (limited to 'doc/administration')
-rw-r--r-- | doc/administration/index.md | 1 | ||||
-rw-r--r-- | doc/administration/user_settings.md | 35 |
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 -``` |