Advertisement
Guest User

Andre

a guest
Apr 27th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. #ServerAuth plugin default configuration
  2. ---
  3. #Keep logged in by IP
  4. IPLogin: true
  5. #Force single authentication
  6. force-single-auth: true
  7. #Allow not authenticated users to move
  8. allow-move: false
  9. #Block chat for not authenticated users
  10. block-chat: true
  11. #Block commands for not authenticated users
  12. block-commands: true
  13. #Block all events
  14. block-all-events: true
  15. #Login/Register timeout
  16. timeout: 60
  17. #Minimum password length
  18. minPasswordLength: 6
  19. #Maximum password length
  20. maxPasswordLength: 16
  21. #Password hash algorithm
  22. passwordHash: "sha256"
  23. #ServerAuth language
  24. language: "EN_en"
  25. #ServerAuth message prefix
  26. prefix: ""
  27. #Show join message (defined on join-message in the current language file)
  28. show-join-message: true
  29. #Use MySQL (set this to false if you want to save data in local files)
  30. use-mysql: true
  31. #MySQL settings
  32. mysql:
  33. #MySQL host
  34. host: "Play.RagingPE.net"
  35. #MySQL port (default 3306)
  36. port: 3306
  37. #MySQL username
  38. username: "root"
  39. #MySQL password (you can leave it blank if your database doesn't need password)
  40. password: "PUSSYLOVER2016"
  41. #MySQL ServerAuth database
  42. database: "auth"
  43. #ServerAuth table prefix
  44. table_prefix: "srvauth_"
  45. #Login settings
  46. login:
  47. #Enable login on your server
  48. enabled: true
  49. #Enable failed logins kick
  50. enable-failed-logins-kick: true
  51. #Max number of attempts
  52. max-login-attempts: 7
  53. #Login message interval
  54. message-interval: 10
  55. #Register settings
  56. register:
  57. #Enable register on your server
  58. enabled: true
  59. #Require password confirmation
  60. password-confirm-required: true
  61. #Enable max registrations per IP
  62. enable-max-ip: false
  63. #Max registrations per IP
  64. max-ip: 3
  65. #Register message interval
  66. message-interval: 10
  67. #Change Password settings
  68. changepassword:
  69. #Enable changepassword on your server
  70. enabled: true
  71. #Require password confirmation
  72. password-confirm-required: true
  73. #Logout settings
  74. logout:
  75. #Enable logout on your server
  76. enabled: true
  77. #Unregister settings
  78. unregister:
  79. #Enable unregister on your server
  80. enabled: true
  81. #Require password confirmation
  82. require-password: true
  83. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement