Advertisement
Guest User

Untitled

a guest
Jun 15th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. # Default config for SimpleAuth plugin
  2.  
  3. #Sets the data provider (yaml, sqlite3, mysql, none).
  4. #Only use none when there is another plugin that will integrate its dataProvider with SimpleAuth
  5. #Be aware that data is not automatically moved between data providers.
  6. dataProvider: yaml
  7.  
  8. #For MySQL:
  9. #dataProviderSettings:
  10. # host: "127.0.0.1"
  11. # port: 3306
  12. # user: "user"
  13. # password: "password"
  14. # database: "databaseName"
  15.  
  16.  
  17. dataProviderSettings:
  18. host: "localhost"
  19. port: 3306
  20. user: "root"
  21. password: "password"
  22. database: "HybridKaz"
  23.  
  24.  
  25. #If enabled, existing logged-in accounts won't be kicked if a new player joins with the same name
  26. forceSingleSession: true
  27.  
  28. #Sets the minimum amount of characters to be used when registering a new account
  29. minPasswordLength: 6
  30.  
  31. #Will block user after this number of failed attempts. Set to 0 to disable
  32. blockAfterFail: 6
  33.  
  34. #If enabled, accounts that are using the same unique id (ip + clientId + name) when logging in again will be automatically authenticated
  35. authenticateByLastUniqueId: false
  36.  
  37. #If enabled, will set all the permissions for simleauth.command.register to false
  38. disableRegister: false
  39.  
  40. #If enabled, will set all the permissions for simleauth.command.login to false
  41. disableLogin: false
  42.  
  43. #Number of seconds to wait for a player to be authenticated. If false, disables the timeout
  44. #TODO
  45. authenticateTimeout: 120s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement