gluon-web-admin.rst 838 B

1234567891011121314151617181920212223242526272829
  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
  10. - ``true`` the password section in config mode is shown
  11. - ``false`` the password section in config mode is hidden
  12. - defaults to ``false``
  13. config_mode.remote_login.min_password_length \: optional
  14. - sets the minimum allowed password length. Set this to ``1`` to disable the
  15. length check.
  16. - defaults to ``12``
  17. Example::
  18. config_mode = {
  19. remote_login = {
  20. show_password_form = true, -- default false
  21. min_password_length = 12
  22. }
  23. }