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/security/password_length_limits.md')
-rw-r--r--doc/security/password_length_limits.md46
1 files changed, 5 insertions, 41 deletions
diff --git a/doc/security/password_length_limits.md b/doc/security/password_length_limits.md
index fe51022eea7..0211a326e0a 100644
--- a/doc/security/password_length_limits.md
+++ b/doc/security/password_length_limits.md
@@ -12,17 +12,11 @@ By default, GitLab supports passwords with the following lengths:
- Minimum: 8 characters
- Maximum: 128 characters
-GitLab administrators can modify password lengths:
+You can only change the minimum password length. Changing the minimum length does not affect existing user passwords.
+Existing users are not asked to reset their password to adhere to the new limits. The new limit restriction applies only
+during new user sign-ups and when an existing user performs a password reset.
-- Using the GitLab UI. [From](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/20661) GitLab
- 12.6, this is the only available option.
-- Using configuration file. Up to GitLab 12.5.
-
-Changing the minimum or maximum length does not affect existing user passwords. Existing users are
-not asked to reset their password to adhere to the new limits. The new limit restriction applies
-only during new user sign-ups and when an existing user performs a password reset.
-
-## Modify minimum password length using GitLab UI
+## Modify minimum password length
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/20661) in GitLab 12.6
@@ -32,39 +26,9 @@ To change the minimum password length using GitLab UI:
1. On the top bar, select **Main menu > Admin**.
1. On the left sidebar, select **Settings > General** and expand **Sign-up restrictions**.
-
- ![Minimum password length settings](../user/admin_area/img/minimum_password_length_settings_v12_6.png)
-
1. Enter a **Minimum password length** value greater than or equal to `8`.
1. Select **Save changes**.
-## Modify maximum password length using configuration file
-
-From GitLab 12.6, the minimum password length set in this configuration file is ignored. Minimum password lengths must instead be modified via the [GitLab UI](#modify-minimum-password-length-using-gitlab-ui).
-
-The user password length is set to a maximum of 128 characters by default.
-To change that for installations from source:
-
-1. Edit `devise_password_length.rb`:
-
- ```shell
- cd /home/git/gitlab
- sudo -u git -H cp config/initializers/devise_password_length.rb.example config/initializers/devise_password_length.rb
- sudo -u git -H editor config/initializers/devise_password_length.rb
- ```
-
-1. Change the new password length limits:
-
- ```ruby
- config.password_length = 12..135
- ```
-
- In this example, the minimum length is 12 characters, and the maximum length
- is 135 characters.
-
-1. [Restart GitLab](../administration/restart_gitlab.md#installations-from-source)
- for the changes to take effect.
-
<!-- ## Troubleshooting
Include any troubleshooting steps that you can foresee. If you know beforehand what issues
@@ -73,6 +37,6 @@ important to describe those, too. Think of things that may go wrong and include
This is important to minimize requests for support, and to avoid doc comments with
questions that you know someone might ask.
-Each scenario can be a third-level heading, e.g. `### Getting error message X`.
+Each scenario can be a third-level heading, for example `### Getting error message X`.
If you have none to add when creating a doc, leave this section in place
but commented out to help encourage others to add to it in the future. -->