diff options
author | Andy Scherzinger <info@andy-scherzinger.de> | 2024-03-03 11:13:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-03 11:13:51 +0100 |
commit | 90f1b7e0cfd96794dac8af92c0b6091027b0b569 (patch) | |
tree | 5452c28994cf1c96fbbd389c396da37ccd2adaf9 | |
parent | a23d8b2778841e22498c6fb09a6eb91342eb6dc1 (diff) | |
parent | 2f89a732fe2de2eda0fe3c49727d61479d5c2c1e (diff) | |
download | nextcloud-server-90f1b7e0cfd96794dac8af92c0b6091027b0b569.tar.gz nextcloud-server-90f1b7e0cfd96794dac8af92c0b6091027b0b569.zip |
Merge pull request #43962 from alexanderdd/patch-1
in text: "bruteforce" > "brute force"
-rw-r--r-- | config/config.sample.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 79f813a4dae..c21291cd3da 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -368,7 +368,7 @@ $CONFIG = [ 'token_auth_activity_update' => 60, /** - * Whether the bruteforce protection shipped with Nextcloud should be enabled or not. + * Whether the brute force protection shipped with Nextcloud should be enabled or not. * * Disabling this is discouraged for security reasons. * @@ -377,9 +377,9 @@ $CONFIG = [ 'auth.bruteforce.protection.enabled' => true, /** - * Whether the bruteforce protection shipped with Nextcloud should be set to testing mode. + * Whether the brute force protection shipped with Nextcloud should be set to testing mode. * - * In testing mode bruteforce attempts are still recorded, but the requests do + * In testing mode brute force attempts are still recorded, but the requests do * not sleep/wait for the specified time. They will still abort with * "429 Too Many Requests" when the maximum delay is reached. * Enabling this is discouraged for security reasons |