Advertisement
Guest User

Untitled

a guest
Mar 12th, 2017
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. # +------------------------------------------------------------------------+ #
  2. # | Storage | #
  3. # +------------------------------------------------------------------------+ #
  4.  
  5. # Which storage method the plugin should use.
  6. # Currently supported: mysql, postgresql, sqlite, h2, json, yaml, mongodb
  7. # Fill out connection info below if you're using MySQL, PostgreSQL or MongoDB
  8. storage-method: MySQL
  9.  
  10. # This block enables support for split datastores.
  11. split-storage:
  12. enabled: false
  13. methods:
  14. user: h2
  15. group: h2
  16. track: h2
  17. uuid: h2
  18. log: h2
  19.  
  20. data:
  21. # Uses standard DB engine port by default
  22. # MySQL: 3306, PostgreSQL: 5432, MongoDB: 27017
  23. # Specify as "host:port" if differs
  24. address: localhost
  25.  
  26. database: lp
  27. username: root
  28. password: 'MC33079PG'
  29. pool-size: 10 # The size of the MySQL connection pool.
  30.  
  31. # The prefix for all LuckPerms tables. Change this is you want to use different tables for different servers.
  32. # This should *not* be set to "lp_" if you have previously ran LuckPerms v2.16.81 or earlier with this database.
  33. table_prefix: 'luckperms_'
  34.  
  35. # Set to -1 to disable. If this is the only instance accessing the datastore, you can disable syncing.
  36. # e.g. if you're using sqlite or flatfile, this can be set to -1 to save resources.
  37. sync-minutes: 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement