2017-06-22 22:17:37 +00:00
|
|
|
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
|
2019-03-10 19:15:25 +00:00
|
|
|
possible to access the nodes via ssh with a password or not and what the minimum
|
2017-06-22 22:17:37 +00:00
|
|
|
password length must be.
|
|
|
|
|
|
|
|
site.conf
|
|
|
|
---------
|
|
|
|
|
2017-12-27 20:48:21 +00:00
|
|
|
config_mode.remote_login.show_password_form \: optional
|
|
|
|
- ``true`` the password section in config mode is shown
|
|
|
|
- ``false`` the 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 ``1`` to disable the
|
|
|
|
length check.
|
|
|
|
- defaults to ``12``
|
2017-06-22 22:17:37 +00:00
|
|
|
|
2017-12-27 20:48:21 +00:00
|
|
|
Example::
|
2017-06-22 22:17:37 +00:00
|
|
|
|
|
|
|
config_mode = {
|
|
|
|
remote_login = {
|
|
|
|
show_password_form = true, -- default false
|
|
|
|
min_password_length = 12
|
|
|
|
}
|
|
|
|
}
|