From 4555e1b21c365ed8303ffb7a3325d773c9b8bf31 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Wed, 19 May 2021 15:44:42 +0000 Subject: Add latest changes from gitlab-org/gitlab@13-12-stable-ee --- doc/security/rate_limits.md | 1 + doc/security/reset_user_password.md | 8 ++++---- doc/security/ssh_keys_restrictions.md | 6 +++--- doc/security/token_overview.md | 12 ++++++++++++ doc/security/two_factor_authentication.md | 18 +++++++++--------- 5 files changed, 29 insertions(+), 16 deletions(-) (limited to 'doc/security') diff --git a/doc/security/rate_limits.md b/doc/security/rate_limits.md index 1609607ea5c..157600c15fb 100644 --- a/doc/security/rate_limits.md +++ b/doc/security/rate_limits.md @@ -33,6 +33,7 @@ These are rate limits you can set in the Admin Area of your instance: - [Protected paths](../user/admin_area/settings/protected_paths.md) - [Raw endpoints rate limits](../user/admin_area/settings/rate_limits_on_raw_endpoints.md) - [User and IP rate limits](../user/admin_area/settings/user_and_ip_rate_limits.md) +- [Package registry rate limits](../user/admin_area/settings/package_registry_rate_limits.md) ## Non-configurable limits diff --git a/doc/security/reset_user_password.md b/doc/security/reset_user_password.md index 5f46ebcec31..344cfcae46a 100644 --- a/doc/security/reset_user_password.md +++ b/doc/security/reset_user_password.md @@ -20,8 +20,8 @@ which can be invoked by the following command: sudo gitlab-rake "gitlab:password:reset" ``` -You will be asked for username, password, and password confirmation. Upon giving -proper values for them, the password of the specified user will be updated. +GitLab asks for a username, a password, and a password confirmation. Upon giving +proper values for them, the password of the specified user is updated. The Rake task also takes the username as an argument, as shown in the example below: @@ -91,7 +91,7 @@ Try fixing this on the rails console. For example, if your new `root` password i 1. [Start a Rails console](../administration/operations/rails_console.md). -1. Find the user and skip reconfirmation. Any of the methods to find the user, above, will work: +1. Find the user and skip reconfirmation, using any of the methods above: ```ruby user = User.find(1) @@ -110,7 +110,7 @@ password. If the username was changed to something else and has been forgotten, one possible way is to reset the password using Rails console with user ID `1` (in -almost all the cases, the first user will be the default admin account). +almost all the cases, the first user is the default admin account).