Advertisement
Guest User

Untitled

a guest
Mar 16th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. # Fill out connection info below if you're using MySQL, MariaDB, PostgreSQL or MongoDB
  2. # If your MySQL server supports it, the "mariadb" option is preferred over "mysql".
  3. storage-method: MySql
  4.  
  5. # When using a file-based storage type, LuckPerms can monitor the data files for changes, and then
  6. # schedule automatic updates when changes are detected.
  7. #
  8. # If you don't want this to happen, set this option to false.
  9. watch-files: true
  10.  
  11. # This block enables support for split datastores.
  12. split-storage:
  13. enabled: false
  14. methods:
  15. user: h2
  16. group: h2
  17. track: h2
  18. uuid: h2
  19. log: h2
  20.  
  21. data:
  22. # Uses standard DB engine port by default
  23. # MySQL: 3306, PostgreSQL: 5432, MongoDB: 27017
  24. # Specify as "host:port" if differs
  25. address: localhost:
  26.  
  27. database: fireuniv_test
  28. username: fireuniv_mc
  29. password: password
  30. # These settings apply to the MySQL connection pool.
  31. # The default values will be suitable for the majority of users.
  32. # Do not change these settings unless you know what you're doing!
  33. pool-settings:
  34.  
  35. # Sets the maximum size of the MySQL connection pool.
  36. # Basically this value will determine the maximum number of actual
  37. # connections to the database backend.
  38. #
  39. # More information about determining the size of connection pools can be found here:
  40. # https://github.com/brettwooldridge/HikariCP/wiki/About-Pool-Sizing
  41. maximum-pool-size: 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement