Compare commits
1 commit
master
...
kjg_passwo
Author | SHA1 | Date | |
---|---|---|---|
de2449bfc4 |
5 changed files with 10 additions and 0 deletions
|
@ -2254,6 +2254,8 @@ password_config:
|
|||
# Uncomment to disable password login
|
||||
#
|
||||
#enabled: false
|
||||
enableed: ${ENABLE_PASSWORDCONFIG:?}
|
||||
|
||||
|
||||
# Uncomment to disable authentication against the local password
|
||||
# database. This is ignored if \`enabled\` is false, and is only useful
|
||||
|
|
|
@ -286,6 +286,11 @@ worker-mode
|
|||
processes are called 'workers'. Please read the WORKER MODE section of this
|
||||
manpage before enabling, as extra work and considerations are required.
|
||||
|
||||
enable-passwordconfig
|
||||
For removing user/password tab on login screen.
|
||||
when it set saml2-login, it remove user/password tab on login-screen.
|
||||
default is true.
|
||||
|
||||
PERFORMANCE
|
||||
-----------
|
||||
|
||||
|
|
|
@ -169,6 +169,7 @@ fi
|
|||
# Registrations and users.
|
||||
ALLOW_GUEST_ACCESS=$(get_boolean_for 'allow-guest-access')
|
||||
ENABLE_REGISTRATIONS=$(get_boolean_for 'enable-registrations')
|
||||
ENABLE_PASSWORDCONFIG=$(get_boolean_for 'enable-passwordconfig')
|
||||
USER_DIRECTORY_SEARCH_ALL_USERS=$(get_boolean_for 'user-directory-search-all-users')
|
||||
export ALLOW_GUEST_ACCESS ENABLE_REGISTRATIONS USER_DIRECTORY_SEARCH_ALL_USERS
|
||||
|
||||
|
|
|
@ -18,3 +18,4 @@ enable-message-retention-policy
|
|||
worker-mode
|
||||
enable-url-preview
|
||||
enable-3pid-lookups
|
||||
enable-passwordconfig
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
true
|
Loading…
Reference in a new issue