config.inc.php 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. // Password Plugin options
  3. // -----------------------
  4. // A driver to use for password change. Default: "sql".
  5. // See README file for list of supported driver names.
  6. $config["password_driver"] = "hestia";
  7. // Require the new password to be a certain length.
  8. // set to blank to allow passwords of any length
  9. $config["password_minimum_length"] = 8;
  10. // Require the new password to contain a letter and punctuation character
  11. // Change to false to remove this check.
  12. $config["password_require_nonalpha"] = false;
  13. // Enables logging of password changes into logs/password
  14. $config["password_log"] = false;
  15. // Comma-separated list of login exceptions for which password change
  16. // will be not available (no Password tab in Settings)
  17. $config["password_login_exceptions"] = null;
  18. // By default domains in variables are using unicode.
  19. // Enable this option to use punycoded names
  20. $config["password_idn_ascii"] = false;
  21. // Hestia Driver options
  22. // -----------------------
  23. // Control Panel host
  24. $config["password_hestia_host"] = "localhost";
  25. $config["password_hestia_port"] = "8083";