1
0
mirror of https://github.com/ArcticFoxes-net/Synapse-Ubuntu-ZFS synced 2024-09-20 06:34:43 -04:00
Synapse-Ubuntu-ZFS/etc/matrix-synapse/conf.d/password_config.yaml

51 lines
1.3 KiB
YAML
Raw Normal View History

2023-08-25 16:17:37 -04:00
password_config:
# Uncomment to disable password login
#
#enabled: false
# Uncomment to disable authentication against the local password
# database. This is ignored if `enabled` is false, and is only useful
# if you have other password_providers.
#
#localdb_enabled: false
# Uncomment and change to a secret random string for extra security.
# DO NOT CHANGE THIS AFTER INITIAL SETUP!
#
pepper: "REDACTED"
# Define and enforce a password policy. Each parameter is optional.
# This is an implementation of MSC2000.
#
policy:
# Whether to enforce the password policy.
# Defaults to 'false'.
#
enabled: true
# Minimum accepted length for a password.
# Defaults to 0.
#
minimum_length: 16
2023-08-25 16:17:37 -04:00
# Whether a password must contain at least one digit.
# Defaults to 'false'.
#
require_digit: true
# Whether a password must contain at least one symbol.
# A symbol is any character that's not a number or a letter.
# Defaults to 'false'.
#
require_symbol: true
# Whether a password must contain at least one lowercase letter.
# Defaults to 'false'.
#
require_lowercase: true
# Whether a password must contain at least one uppercase letter.
# Defaults to 'false'.
#
require_uppercase: true