Advertisement
Oliinyk

Untitled

Nov 17th, 2023
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. Settings:
  2. #SQLite MySQL
  3. storage-type: MySQL
  4. #Use connection pool or not
  5. #Require 'slf4j' dependencies
  6. #At least java version 11 is required
  7. usepool: false
  8. #Set the maximum number of threads (SQLite no such setting)
  9. max-threads: 10
  10.  
  11.  
  12. #SQLite settings
  13. SQLite:
  14. #Address is the folder path
  15. path: Default
  16.  
  17.  
  18. #MySQL settings
  19. MySQL:
  20. host: 127.0.0.1
  21. port: XXXX
  22. user: ***
  23. pass: ***
  24. database: prod_xconomy
  25. #auto add "_", can use %sign% to indicate Server ID (BungeeCord settings)
  26. table-suffix: ''
  27. property:
  28. usessl: false
  29. encoding: utf8
  30. timezone: ''
  31. allowPublicKeyRetrieval: false
  32.  
  33.  
  34. #Connection pool settings
  35. Pool-Settings:
  36. maximum-pool-size: 5
  37. minimum-idle: 5
  38. maximum-lifetime: 60000
  39. idle-timeout: 10000
  40.  
  41.  
  42. #Redis settings
  43. Redis:
  44. host: localhost
  45. port: 6379
  46. db-index: 1
  47. pool-settings:
  48. max-total: 5
  49. max-idle: 5
  50. min-idle: 0
  51. auth:
  52. user: ''
  53. pass: ''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement