gluon-web-admin¶
This package allows the user to set options like the password for ssh access
within config mode. You can define in your site.conf whether it should be
possible to access the nodes via ssh with a password or not and what the minimum
password length must be.
site.conf¶
- config_mode.remote_login.show_password_form : optional
truethe password section in config mode is shownfalsethe password section in config mode is hidden- defaults to
false
- config_mode.remote_login.min_password_length : optional
- sets the minimum allowed password length. Set this to
1to disable the length check. - defaults to
12
- sets the minimum allowed password length. Set this to
Example:
config_mode = {
remote_login = {
show_password_form = true, -- default false
min_password_length = 12
}
}