Advertisement
Guest User

Untitled

a guest
Mar 12th, 2017
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 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
  38. # +------------------------------------------------------------------------+ #
  39. # | Storage | #
  40. # +------------------------------------------------------------------------+ #
  41.  
  42. # Which storage method the plugin should use.
  43. # Currently supported: mysql, postgresql, sqlite, h2, json, yaml, mongodb
  44. # Fill out connection info below if you're using MySQL, PostgreSQL or MongoDB
  45. storage-method: MySQL
  46.  
  47. # This block enables support for split datastores.
  48. split-storage:
  49. enabled: false
  50. methods:
  51. user: h2
  52. group: h2
  53. track: h2
  54. uuid: h2
  55. log: h2
  56.  
  57. data:
  58. # Uses standard DB engine port by default
  59. # MySQL: 3306, PostgreSQL: 5432, MongoDB: 27017
  60. # Specify as "host:port" if differs
  61. address: localhost
  62.  
  63. database: lp
  64. username: root
  65. password: 'MC33079PG'
  66. pool-size: 10 # The size of the MySQL connection pool.
  67.  
  68. # The prefix for all LuckPerms tables. Change this is you want to use different tables for different servers.
  69. # This should *not* be set to "lp_" if you have previously ran LuckPerms v2.16.81 or earlier with this database.
  70. table_prefix: 'luckperms_'
  71.  
  72. # Set to -1 to disable. If this is the only instance accessing the datastore, you can disable syncing.
  73. # e.g. if you're using sqlite or flatfile, this can be set to -1 to save resources.
  74. sync-minutes: 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement