diff options
author | mrsdizzie <info@mrsdizzie.com> | 2020-08-21 18:42:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-21 18:42:23 -0400 |
commit | fb70b5d207d8a0c3c2ce9eb04b361146a347d894 (patch) | |
tree | 94ad1f05acae5520447599997f4f4bfe8375f257 /docs | |
parent | 7c2cf236f8a54038e1688e6256e6c32b8b4e6913 (diff) | |
download | gitea-fb70b5d207d8a0c3c2ce9eb04b361146a347d894.tar.gz gitea-fb70b5d207d8a0c3c2ce9eb04b361146a347d894.zip |
Disable password complexity check default (#12557)
* Disable password complexity check default
These features enourange bad passwords/are annoying for people using better password methods, and at minimum we shouldn't force that as a default for obvious reasons. Disable any default check to avoid regular complaints.
* fix copy paste format
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/advanced/config-cheat-sheet.en-us.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/doc/advanced/config-cheat-sheet.en-us.md b/docs/content/doc/advanced/config-cheat-sheet.en-us.md index 2bf8251235..56da1d220c 100644 --- a/docs/content/doc/advanced/config-cheat-sheet.en-us.md +++ b/docs/content/doc/advanced/config-cheat-sheet.en-us.md @@ -323,7 +323,7 @@ set name for unique queues. Individual queues will default to - `INTERNAL_TOKEN_URI`: **<empty>**: Instead of defining internal token in the configuration, this configuration option can be used to give Gitea a path to a file that contains the internal token (example value: `file:/etc/gitea/internal_token`) - `PASSWORD_HASH_ALGO`: **pbkdf2**: The hash algorithm to use \[pbkdf2, argon2, scrypt, bcrypt\]. - `CSRF_COOKIE_HTTP_ONLY`: **true**: Set false to allow JavaScript to read CSRF cookie. -- `PASSWORD_COMPLEXITY`: **lower,upper,digit,spec**: Comma separated list of character classes required to pass minimum complexity. If left empty or no valid values are specified, the default values will be used. Possible values are: +- `PASSWORD_COMPLEXITY`: **off**: Comma separated list of character classes required to pass minimum complexity. If left empty or no valid values are specified, checking is disabled (off): - lower - use one or more lower latin characters - upper - use one or more upper latin characters - digit - use one or more digits |