Advertisement
lobem

Untitled

Feb 20th, 2020
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.38 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 the database caching system, should be disabled on bungeecord environments
  6.     # or when a website integration is being used.
  7.     caching: false
  8.     # Database host address
  9.     mySQLHost: '127.0.0.1'
  10.     # Database port
  11.     mySQLPort: '3306'
  12.     # Connect to MySQL database over SSL
  13.     mySQLUseSSL: false
  14.     # Username to connect to the MySQL database
  15.     mySQLUsername: 'root'
  16.     # Password to connect to the MySQL database
  17.     mySQLPassword: '12345'
  18.     # Database Name, use with converters or as SQLITE database name
  19.     mySQLDatabase: 'authme_omega'
  20.     # Table of the database
  21.     mySQLTablename: 'authme'
  22.     # Column of IDs to sort data
  23.     mySQLColumnId: 'id'
  24.     # Column for storing or checking players nickname
  25.     mySQLColumnName: 'username'
  26.     # Column for storing or checking players RealName
  27.     mySQLRealName: 'realname'
  28.     # Column for storing players passwords
  29.     mySQLColumnPassword: 'password'
  30.     # Column for storing players emails
  31.     mySQLColumnEmail: 'email'
  32.     # Column for storing if a player is logged in or not
  33.     mySQLColumnLogged: 'isLogged'
  34.     # Column for storing if a player has a valid session or not
  35.     mySQLColumnHasSession: 'hasSession'
  36.     # Column for storing the player's last IP
  37.     mySQLColumnIp: 'ip'
  38.     # Column for storing players lastlogins
  39.     mySQLColumnLastLogin: 'lastlogin'
  40.     # Column storing the registration date
  41.     mySQLColumnRegisterDate: 'regdate'
  42.     # Column for storing the IP address at the time of registration
  43.     mySQLColumnRegisterIp: 'regip'
  44.     # Column for storing player LastLocation - X
  45.     mySQLlastlocX: 'x'
  46.     # Column for storing player LastLocation - Y
  47.     mySQLlastlocY: 'y'
  48.     # Column for storing player LastLocation - Z
  49.     mySQLlastlocZ: 'z'
  50.     # Column for storing player LastLocation - World Name
  51.     mySQLlastlocWorld: 'world'
  52.     # Column for storing player LastLocation - Yaw
  53.     mySQLlastlocYaw: 'yaw'
  54.     # Column for storing player LastLocation - Pitch
  55.     mySQLlastlocPitch: 'pitch'
  56.     # Overrides the size of the DB Connection Pool, -1 = Auto
  57.     poolSize: -1
  58.     # The maximum lifetime of a connection in the pool, default = 1800 seconds
  59.     # You should set this at least 30 seconds less than mysql server wait_timeout
  60.     maxLifetime: 1800
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement