Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. #-----------------------------------------#
  2. # #
  3. # LeaderHeads 2 #
  4. # A full-fledged solution to manage #
  5. # statistics and create leaderboards #
  6. # (R) RobiRami 2016 #
  7. # #
  8. #-----------------------------------------#
  9. # #
  10. # Database config #
  11. # #
  12. #-----------------------------------------#
  13.  
  14. # MySQL details
  15. mysql-enabled: true
  16. mysql-host: 149.202.223.99
  17. mysql-port: 3306
  18. mysql-database: leaderheadsBW
  19. mysql-username: frake
  20. mysql-password: pa7popa32
  21. mysql-batch-size: 512
  22. mysql-connections: 20
  23. mysql-timeout: 120000
  24.  
  25.  
  26. # Table names
  27. # Change this if you want to synchronize the
  28. # same statistic from multiple servers
  29. # These tables names are used for sending data
  30. # from this server to the database
  31. all-time-data-table: BW_LH_alltime
  32. daily-data-table: BW_LH_daily
  33. weekly-data-table: BW_LH_weekly
  34. monthly-data-table: BW_LH_monthly
  35.  
  36. # Version of the config
  37. # Do NOT change this
  38. config-version: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement