Advertisement
AS1LV3RN1NJA

AuthMe config

Feb 3rd, 2012
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.12 KB | None | 0 0
  1. DataController:
  2.     CacheEnabled: true
  3.     Datasource: flatfile
  4. Misc:
  5.     ForceRegistration: true
  6.     KickNonRegistered: false
  7.     KickOnWrongPassword: false
  8.     LoginTimeout: 90
  9.     AlertInterval: 5
  10.     AllowNonRegistered:
  11.         Chat: true
  12.         Commands:
  13.        - rules
  14.         - help
  15.         - website
  16.         WalkAroundSpawn:
  17.             Enabled: true
  18.             Radius: 10
  19.     AllowNonLoggedIn:
  20.         Commands:
  21.        - uptime
  22.     AllowPlayerUnrestrictedAccess:
  23.    - Bot01
  24.     Hash: SHA256
  25. PlayerNameRestriction:
  26.     PlayerNameMaxLength: 20
  27.     PlayerNameMinLength: 3
  28.     PlayerNameRegex: '[a-zA-Z0-9_?]*'
  29. LoginSessions:
  30.     Enabled: false
  31.     MaximalTimePeriod: 5
  32.     IPCheckEnabled: true
  33. Commands:
  34.     Users:
  35.         ChangePasswordEnabled: true
  36.         RegisterEnabled: true
  37.         UnregisterEnabled: false
  38.         LoginEnabled: true
  39.         LogoutEnabled: false
  40.     Ops:
  41.         ReloadAuthsEnabled: true
  42.         ResetAuthEnabled: true
  43. MySQL:
  44.     Connection:
  45.         Host: localhost
  46.         Port: 3306
  47.         Database: test
  48.         Username: root
  49.         Password: pass
  50.     Custom:
  51.         TableName: authme
  52.         ColumnUsername: username
  53.         ColumnPassword: password
  54.         RegistrationInfo:
  55. settings:
  56.     sessions:
  57.         enabled: false
  58.         timeout: 10
  59.     restrictions:
  60.         allowChat: false
  61.         kickNonRegistered: false
  62.         teleportUnAuthedToSpawn: true
  63.         maxNicknameLength: 20
  64.         allowMovement: false
  65.         minNicknameLength: 3
  66.         timeout: 30
  67.         allowedMovementRadius: 100
  68.         allowedNicknameCharacters: '[a-zA-Z0-9_?]*'
  69.         ForceSingleSession: false
  70.     security:
  71.         passwordHash: SHA256
  72.     registration:
  73.         enabled: true
  74.         messageInterval: 5
  75.         force: true
  76. DataSource:
  77.     mySQLColumnName: username
  78.     mySQLTablename: authme
  79.     mySQLUsername: authme
  80.     backend: file
  81.     mySQLDatabase: authme
  82.     mySQLPort: '3306'
  83.     mySQLColumnIp: ip
  84.     mySQLHost: 127.0.0.1
  85.     mySQLColumnPassword: password
  86.     mySQLPassword: '12345'
  87.     caching: true
  88.     mySQLColumnLastLogin: lastlogin
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement