Guest User

Untitled

a guest
Jan 24th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. #=============================================================
  2. # Loginserver
  3. #=============================================================
  4.  
  5. # This is transmitted to the clients, so it has to be an IP or resolvable hostname
  6. Hostname = localhost
  7.  
  8. # Bind ip of the LoginServer, use * to bind on all available IPs
  9. LoginserverHostname = *
  10. LoginserverPort = 2106
  11.  
  12. # The Loginserver host and port.
  13. LoginHostname = *
  14. LoginPort = 9014
  15.  
  16. # How many times you can provide an invalid account/pass before the IP gets banned
  17. LoginTryBeforeBan = 3
  18.  
  19. # Time you won't be able to login back again after LoginTryBeforeBan tries to login. Provide a value in seconds. Default 10min. (600)
  20. LoginBlockAfterBan = 600
  21.  
  22. # If set to true, any GameServer can register on your login's free slots
  23. AcceptNewGameServer = False
  24.  
  25. # If false, the licence (after the login) will not be shown. Default : true.
  26. ShowLicence = True
  27.  
  28. #=============================================================
  29. # Database informations
  30. #=============================================================
  31.  
  32. URL = jdbc:mysql://localhost/acis
  33. #URL = jdbc:hsqldb:hsql://localhost/acis
  34. #URL = jdbc:sqlserver://localhost/database=acis/user=sa/password=
  35.  
  36. Login = root
  37. Password =
  38.  
  39. MaximumDbConnections = 10
  40.  
  41. # Usable values: "true" - "false", use this option to choose whether accounts will be created automatically or not.
  42. AutoCreateAccounts = True
  43.  
  44. #=============================================================
  45. # Security
  46. #=============================================================
  47.  
  48. # Log all events from loginserver (account creation, failed/success login, etc)
  49. LogLoginController = False
  50.  
  51. # FloodProtection. time in ms
  52. EnableFloodProtection = True
  53.  
  54. FastConnectionLimit = 15
  55. NormalConnectionTime = 700
  56. FastConnectionTime = 350
  57. MaxConnectionPerIP = 50
  58.  
  59. #=============================================================
  60. # Test server, shoudnt be touched in live server
  61. #=============================================================
  62.  
  63. Debug = False
  64. Developer = False
  65. PacketHandlerDebug = False
Add Comment
Please, Sign In to add comment