Advertisement
Guest User

Untitled

a guest
Jul 1st, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. DataSource:
  2. # What type of database do you want to use?
  3. # Valid values: sqlite, mysql
  4. backend: 'MYSQL'
  5. # Enable database caching, should improve database performance
  6. caching: true
  7. # Database host address
  8. mySQLHost: 'sgp.sql.cubedhost.com'
  9. # Database port
  10. mySQLPort: '3306'
  11. # Username about Database Connection Infos
  12. mySQLUsername: 'gs827'
  13. # Password about Database Connection Infos
  14. mySQLPassword: 'oRNIrtC3bOIHHBi'
  15. # Database Name, use with converters or as SQLITE database name
  16. mySQLDatabase: 'gs827'
  17. # Table of the database
  18. mySQLTablename: 'authme'
  19. # Column of IDs to sort data
  20. mySQLColumnId: 'id'
  21. # Column for storing or checking players nickname
  22. mySQLColumnName: 'username'
  23. # Column for storing or checking players RealName
  24. mySQLRealName: 'realname'
  25. # Column for storing players passwords
  26. mySQLColumnPassword: 'password'
  27. # Request mysql over SSL
  28. mySQLUseSSL: true
  29. # Column for storing players emails
  30. mySQLColumnEmail: 'email'
  31. # Column for storing if a player is logged in or not
  32. mySQLColumnLogged: 'isLogged'
  33. # Column for storing players ips
  34. mySQLColumnIp: 'ip'
  35. # Column for storing players lastlogins
  36. mySQLColumnLastLogin: 'lastlogin'
  37. # Column for storing player LastLocation - X
  38. mySQLlastlocX: 'x'
  39. # Column for storing player LastLocation - Y
  40. mySQLlastlocY: 'y'
  41. # Column for storing player LastLocation - Z
  42. mySQLlastlocZ: 'z'
  43. # Column for storing player LastLocation - World Name
  44. mySQLlastlocWorld: 'world'
  45. # Overrides the size of the DB Connection Pool, -1 = Auto
  46. poolSize: -1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement