Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2018
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. # +------------------------------------------------------------------------+ #
  2. # | Storage | #
  3. # +------------------------------------------------------------------------+ #
  4.  
  5. # Which storage method the plugin should use.
  6. #
  7. # See: https://github.com/lucko/LuckPerms/wiki/Choosing-a-Storage-type
  8. # Currently supported: mysql, mariadb, postgresql, sqlite, h2, json, yaml, mongodb
  9.  
  10. # Fill out connection info below if you're using MySQL, MariaDB, PostgreSQL or MongoDB
  11. # If your MySQL server supports it, the "mariadb" option is preferred over "mysql".
  12. storage-method: MySQL
  13.  
  14. # When using a file-based storage type, LuckPerms can monitor the data files for changes, and then schedule automatic
  15. # updates when changes are detected.
  16. #
  17. # If you don't want this to happen, set this option to false.
  18. watch-files: true
  19.  
  20. # This block enables support for split datastores.
  21. split-storage:
  22. enabled: false
  23. methods:
  24. user: h2
  25. group: h2
  26. track: h2
  27. uuid: h2
  28. log: h2
  29.  
  30. data:
  31. # Uses standard DB engine port by default
  32. # MySQL: 3306, PostgreSQL: 5432, MongoDB: 27017
  33. # Specify as "host:port" if differs
  34. address: 131.153.27.8
  35.  
  36. database: skyblock
  37. username: skyblock
  38. password: 'cAf3HaC4twRHae6M'
  39. pool-size: 10 # The size of the MySQL connection pool.
  40.  
  41. # The prefix for all LuckPerms tables. Change this is you want to use different tables for different servers.
  42. # This should *not* be set to "lp_" if you have previously ran LuckPerms v2.16.81 or earlier with this database.
  43. table_prefix: 'luckperms_'
  44.  
  45. # This option controls how frequently LuckPerms will perform a sync task.
  46. # A sync task will refresh all data from the storage, and ensure that the most up-to-date data is being used by the plugin.
  47. #
  48. # This is disabled by default, as most users will not need it. However, if you're using a remote storage type
  49. # without a messaging service setup, you may wish to set this value to something like 3.
  50. #
  51. # Set to -1 to disable the task completely.
  52. sync-minutes: -1
  53.  
  54. # Settings for the messaging service
  55. #
  56. # If enabled and configured, LuckPerms will use the messaging system to inform other
  57. # connected servers of changes. Use the command "/luckpermsbungee networksync" to push changes.
  58. # Data is NOT stored using this service. It is only used as a messaging platform.
  59. #
  60. # If you decide to enable this feature, you should set "sync-minutes" to -1, as there is no need for LuckPerms
  61. # to poll the database for changes.
  62. #
  63. # Available options:
  64. # bungee ==> uses the plugin messaging channels. Must be enabled on all connected servers to work.
  65. # redis ==> uses redis pub sub to push changes. Your redis server must be configured below.
  66. # none ==> nothing
  67. messaging-service: bungee
  68.  
  69. # If LuckPerms should automatically push updates after a change has been made with a command.
  70. auto-push-updates: true
  71.  
  72. # Settings for Redis.
  73. # Port 6379 is used by default; set address to "host:port" if differs
  74. redis:
  75. enabled: false
  76. address: localhost
  77. password: ''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement