gluon-web-admin.rst 869 B

123456789101112131415161718192021222324252627
  1. gluon-web-admin
  2. ===============
  3. This package allows the user to set options like the password for ssh access
  4. within config mode. You can define in your ``site.conf`` whether it should be
  5. possible to access the nodes via ssh with a password or not and what the mimimum
  6. password length must be.
  7. site.conf
  8. ---------
  9. config_mode.remote_login.show_password_form \: optional (defaults to ``false``)
  10. If ``show_password_form`` is set to ``true``, the password section in
  11. config mode is shown.
  12. config_mode.remote_login.min_password_length \: optional (defaults to ``12``)
  13. This sets the minimum allowed password length. Set this to ``1`` to
  14. disable the length check.
  15. If you want to enable the password login you can use this example::
  16. config_mode = {
  17. remote_login = {
  18. show_password_form = true, -- default false
  19. min_password_length = 12
  20. }
  21. }