Advertisement
Guest User

Untitled

a guest
May 15th, 2019
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. # What type of database do you want to use?
  2. # Valid values: SQLITE, MYSQL, POSTGRESQL
  3. backend: MYSQL
  4. # Enable the database caching system, should be disabled on bungeecord environments
  5. # or when a website integration is being used.
  6. caching: true
  7. # Database host address
  8. mySQLHost: mysql.csrv.pl
  9. # Database port
  10. mySQLPort: '3306'
  11. # Connect to MySQL database over SSL
  12. mySQLUseSSL: true
  13. # Verification of server's certificate.
  14. # We would not recommend to set this option to false.
  15. # Set this option to false at your own risk if and only if you know what you're doing
  16. mySQLCheckServerCertificate: true
  17. # Username to connect to the MySQL database
  18. mySQLUsername: csrv_638181
  19. # Password to connect to the MySQL database
  20. mySQLPassword: 'hasło'
  21. # Database Name, use with converters or as SQLITE database name
  22. mySQLDatabase: csrv_638181
  23. # Table of the database
  24. mySQLTablename: authme
  25. # Column of IDs to sort data
  26. mySQLColumnId: id
  27. # Column for storing or checking players nickname
  28. mySQLColumnName: username
  29. # Column for storing or checking players RealName
  30. mySQLRealName: realname
  31. # Column for storing players passwords
  32. mySQLColumnPassword: password
  33. # Column for storing players passwords salts
  34. mySQLColumnSalt: ''
  35. # Column for storing players emails
  36. mySQLColumnEmail: email
  37. # Column for storing if a player is logged in or not
  38. mySQLColumnLogged: isLogged
  39. # Column for storing if a player has a valid session or not
  40. mySQLColumnHasSession: hasSession
  41. # Column for storing a player's TOTP key (for two-factor authentication)
  42. mySQLtotpKey: totp
  43. # Column for storing the player's last IP
  44. mySQLColumnIp: ip
  45. # Column for storing players lastlogins
  46. mySQLColumnLastLogin: lastlogin
  47. # Column storing the registration date
  48. mySQLColumnRegisterDate: regdate
  49. # Column for storing the IP address at the time of registration
  50. mySQLColumnRegisterIp: regip
  51. # Column for storing player LastLocation - X
  52. mySQLlastlocX: x
  53. # Column for storing player LastLocation - Y
  54. mySQLlastlocY: y
  55. # Column for storing player LastLocation - Z
  56. mySQLlastlocZ: z
  57. # Column for storing player LastLocation - World Name
  58. mySQLlastlocWorld: world
  59. # Column for storing player LastLocation - Yaw
  60. mySQLlastlocYaw: yaw
  61. # Column for storing player LastLocation - Pitch
  62. mySQLlastlocPitch: pitch
  63. # Overrides the size of the DB Connection Pool, default = 10
  64. poolSize: 10
  65. # The maximum lifetime of a connection in the pool, default = 1800 seconds
  66. # You should set this at least 30 seconds less than mysql server wait_timeout
  67. maxLifetime: 1800
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement