Advertisement
Guest User

Untitled

a guest
Jun 30th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. sql:
  2. # H2, MySQL, MariaDB, and PostgreSQL are supported database drivers.
  3. driver: MySQL
  4.  
  5. ## MySQL/PostgreSQL settings ##
  6. # If using H2, the database will be stored in the LiteBans plugin folder,
  7. # and most of these settings won't apply.
  8.  
  9. # Database server address.
  10. address: localhost:3306
  11.  
  12. # Database name, username and password.
  13. database: 'Litebans'
  14. username: 'root'
  15. password: 'MySQL127'
  16.  
  17. table_prefix: ''
  18.  
  19. # LiteBans utilizes connection pooling for extra performance and reliability.
  20. # min_connaections: Minimum amount of pooled connections.
  21. # max_connections: Maximum amount of pooled connections. See: https://github.com/brettwooldridge/HikariCP/wiki/About-Pool-Sizing
  22. # timeout: Connection timeout.
  23. # idle_timeout: Maximum amount of time a pooled connection can remain idle before it is closed for inactivity.
  24. pool:
  25. min_connections: 1
  26. max_connections: 10
  27. timeout: 30 seconds
  28. idle_timeout: 1 minute
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement