Guest User

Untitled

a guest
Oct 31st, 2022
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. # =================================================
  2. # Settings authorization server
  3. # =================================================
  4.  
  5. # Host and port for client connections
  6. LoginserverHostname = 138.201.62.XX
  7. LoginserverPort = 2107
  8.  
  9. # Host and port for game servers
  10. LoginHost = 127.0.0.1
  11. LoginPort = 9015
  12.  
  13. # Accept new game server in a free slot
  14. AcceptNewGameServer = True
  15.  
  16. # Database Settings
  17. Driver = com.mysql.jdbc.Driver
  18. URL = jdbc:mysql://localhost/l2mythras
  19. Login = root
  20. Password = root123
  21. MaximumDbConnections = 100
  22. # How many seconds after the last activity will update database connection, default is 600 (10 minutes)
  23. MaxIdleConnectionTimeout = 600
  24. # Check interval of inactive connections, default is 60 (1 minute)
  25. IdleConnectionTestPeriod = 60
  26.  
  27. # Automatically create accounts
  28. AutoCreateAccounts = true
  29. # Template for a login and password
  30. AccountTemplate = [A-Za-z0-9]{4,14}
  31. PasswordTemplate = [A-Za-z0-9]{4,16}
  32.  
  33. # Hash for passwords
  34. # News hashing recommended whirlpool2
  35. PasswordHash = whirlpool2
  36.  
  37. # Secondary check with an alternative encryption
  38. # Use it if you already have accounts created with another encryption
  39. LegacyPasswordHash = sha1
  40.  
  41. # Caching Keys
  42. BlowFishKeys = 20
  43. RSAKeyPairs = 10
  44.  
  45. # Highway IP
  46. # The number of failed logins, to ban the IP
  47. LoginTryBeforeBan = 250
  48. # Allowable minimum time between authorization from one IP (in seconds)
  49. LoginTryTimeout = 50
  50. # Banlength IP, if exceeded the number of failed logins (seconds)
  51. IpBanTime = 600
  52.  
  53. # Adequately logged a successful login to the database
  54. LoginLog = false
  55.  
  56. # Ping Game Server
  57. # The time between pings, in seconds, 0 - off
  58. GameServerPingDelay = 30
  59. # Maximum number of failed ping, above which, the connection to the game server is interrupted
  60. GameServerPingRetry = 4
  61.  
  62. # Protection against Brutus. Unless the correct password, entering the server will appear as off.
  63. FakeLogin = False
  64.  
  65. # Hide online number of players against hacking tools.
  66. HideOnline = True
Advertisement
Add Comment
Please, Sign In to add comment