Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1.  
  2. # +------------------------------------------------------------------------+ #
  3. # | Storage | #
  4. # +------------------------------------------------------------------------+ #
  5.  
  6. # Which storage method the plugin should use.
  7. # Currently supported: mysql, sqlite, h2, json, yaml, mongodb
  8. # Fill out connection info below if you're using MySQL or MongoDB
  9. storage-method: MySQL
  10.  
  11. # This block enables support for split datastores.
  12. split-storage:
  13. enabled: true
  14. methods:
  15. user: MySQL
  16. group: MySQL
  17. track: MySQL
  18. uuid: MySQL
  19. log: MySQL
  20.  
  21. data:
  22. address: 142.4.208.190
  23. database: db_5098
  24. username: ********
  25. password: '*********'
  26. pool-size: 10 # The size of the MySQL connection pool.
  27.  
  28. # Set to -1 to disable. If this is the only instance accessing the datastore, you can disable syncing.
  29. # e.g. if you're using sqlite or flatfile, this can be set to -1 to save resources.
  30. sync-minutes: 5
  31.  
  32. # Settings for Redis.
  33. #
  34. # If enabled and configured, LuckPerms will use the Redis PubSub system to inform other
  35. # connected servers of changes. Use the command "/luckpermsbungee networksync" to push changes.
  36. # Data is NOT stored on redis. It is only used as a messaging platform.
  37. #
  38. # If you decide to enable this feature, you should set "sync-minutes" to -1, as there is no need for LuckPerms
  39. # to poll the database for changes.
  40. redis:
  41. enabled: false
  42. address: localhost:6379
  43. password: ''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement