Skip to content

Commit

Permalink
Add PASSWORD_COMPLEXITY to README and docker-compose example
Browse files Browse the repository at this point in the history
  • Loading branch information
stefandesu committed Aug 26, 2022
1 parent c7f5232 commit 04cfaa9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ Be sure to view the following repositories to understand all the customizable op
| `PASSWORD_MIN_LOWERCASE` | Minimal lower characters. | `0` (unchecked). |
| `PASSWORD_MIN_SPECIAL` | Minimal special characters. | `0` (unchecked). |
| `PASSWORD_MIN_UPPERCASE` | Minimal upper characters. | `0` (unchecked). |
| `PASSWORD_COMPLEXITY` | Minimum number of different classes of characters. | `0` (unchecked). |
| `PASSWORD_NO_REUSE` | Dont reuse the same password as currently. | `true`. |
| `PASSWORD_NO_SPECIAL_ENDS` | Dont allow special characters at start and end of password | `false` |
| `PASSWORD_SHOW_POLICY_POSITION` | Position of password policy constraints message `above` `below` | `above` |
Expand Down
2 changes: 2 additions & 0 deletions examples/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ services:
- PASSWORD_MIN_DIGIT=0
# Minimal special characters
- PASSWORD_MIN_SPECIAL=0
# Minimum number of different classes of characters
- PASSWORD_COMPLEXITY=0
# Dont reuse the same password as currently
- PASSWORD_NO_REUSE=true
# Definition of special characters
Expand Down

0 comments on commit 04cfaa9

Please sign in to comment.