Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. #> LoginSecurity configuration.
  2. #> Some information is provided in the form of comments
  3. #> For more info visit https://github.com/lenis0012/LoginSecurity-2/wiki/Configuration
  4. register:
  5. required: false
  6. # When enabled, users need to enter a captcha on registration.
  7. captcha: false
  8. login:
  9. max-tries: 5
  10. password:
  11. min-length: 6
  12. hashing:
  13. # Available algorithms: BCRYPT, SCRYPT, PBKDF2, SHA3_256, WHIRLPOOL
  14. # Check wiki for additional parameters.
  15. algorithm: BCRYPT
  16. password-max-length: 32
  17. join:
  18. # When enabled, player gets a blindness effect when not logged in.
  19. blindness: false
  20. # Temporarily login location until player has logged in.
  21. # Available options: DEFAULT, SPAWN, RANDOM
  22. location: DEFAULT
  23. # Hides the player's inventory until they log in.
  24. # The inventory is never lost, even after reboot or crash.
  25. hide-inventory: false
  26. username:
  27. # Remove special characters like @ and # from the username.
  28. # Disabling this can be a security risk!
  29. filter-special-chars: true
  30. min-length: 3
  31. max-length: 16
  32. # Session timeout, set to -1 to disable.
  33. session-timeout: 60
  34. # Login timeout, set to -1 to disable.
  35. login-timeout: 120
  36. # Login/register message delay.
  37. login-message-delay: 10
  38. updater:
  39. enabled: true
  40. # The type of builds you are checking. RELEASE, BETA, ALPHA
  41. channel: BETA
  42. # Language for messages, check wiki for more info.
  43. # List: http://lang.lenis0012.com/list
  44. # Note: Changing this setting will request info from lang.lenis0012.com!
  45. language: en_us
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement