Advertisement
Guest User

Untitled

a guest
Jun 30th, 2014
508
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.33 KB | None | 0 0
  1. # ---------------------------------------------------------------------------
  2. # Login Server Settings
  3. # ---------------------------------------------------------------------------
  4. # This is the server configuration file. Here you can set up the connection information for your server.
  5. # This was written with the assumption that you are behind a router.
  6. # Dumbed Down Definitions...
  7. # LAN (LOCAL area network) - typically consists of computers connected to the same router as you.
  8. # WAN (WIDE area network) - typically consists of computers OUTSIDE of your router (ie. the internet).
  9. # x.x.x.x - Format of an IP address. Do not include the x'es into settings. Must be real numbers.
  10. # ---------------------------------------------------------------------------
  11. # Networking
  12. # ---------------------------------------------------------------------------
  13.  
  14. # Bind ip of the LoginServer, use * to bind on all available IPs
  15. # WARNING: <u><b><font color="red">Please don't change default IPs here if you don't know what are you doing!</font></b></u>
  16. # WARNING: <u><b><font color="red">External/Internal IPs are now inside "ipconfig.xml" file.</font></b></u>
  17. # Default: * (0.0.0.0)
  18. LoginserverHostname = *
  19.  
  20. # Default: 2106
  21. LoginserverPort = 2106
  22.  
  23. # The address on which login will listen for GameServers, use * to bind on all available IPs
  24. # WARNING: <u><b><font color="red">Please don't change default IPs here if you don't know what are you doing!</font></b></u>
  25. # WARNING: <u><b><font color="red">External/Internal IPs are now inside "ipconfig.xml" file.</font></b></u>
  26. # Default: * (0.0.0.0)
  27. LoginHostname = *
  28.  
  29. # The port on which login will listen for GameServers
  30. # Default: 9014
  31. LoginPort = 9014
  32.  
  33. # ---------------------------------------------------------------------------
  34. # Security
  35. # ---------------------------------------------------------------------------
  36. # Default: True
  37. LogLoginController = True
  38.  
  39. # How many times you can provide an invalid account/pass before the IP gets banned.
  40. # Default: 5
  41. LoginTryBeforeBan = 5
  42.  
  43. # Time you won't be able to login back again after LoginTryBeforeBan tries to login.
  44. # Default: 900 (15 minutes)
  45. LoginBlockAfterBan = 900
  46.  
  47. # If set to True any GameServer can register on your login's free slots
  48. # Default: False
  49. AcceptNewGameServer = False
  50.  
  51. # Flood Protection. All values are in MILISECONDS.
  52. # Default: True
  53. EnableFloodProtection = True
  54.  
  55. # Default: 15
  56. FastConnectionLimit = 15
  57.  
  58. # Default: 700
  59. NormalConnectionTime = 700
  60.  
  61. # Default: 350
  62. FastConnectionTime = 350
  63.  
  64. # Default: 50
  65. MaxConnectionPerIP = 50
  66.  
  67. # ---------------------------------------------------------------------------
  68. # Database
  69. # ---------------------------------------------------------------------------
  70. # Specify the appropriate driver and url for the database you're using.
  71. # Examples:
  72. # Driver = com.mysql.jdbc.Driver (default)
  73. # Driver = org.hsqldb.jdbcDriver
  74. # Driver = com.microsoft.sqlserver.jdbc.SQLServerDriver
  75. Driver = com.mysql.jdbc.Driver
  76.  
  77. # Database URL
  78. # URL = jdbc:mysql://localhost/l2jls (default)
  79. # URL = jdbc:hsqldb:hsql://localhost/l2jls
  80. # URL = jdbc:sqlserver://localhost/database = l2jls/user = sa/password =
  81. URL = jdbc:mysql://localhost/l2jhf
  82.  
  83. # Database user info (default is "root" but it's not recommended)
  84. Login = root
  85.  
  86. # Database connection password
  87. Password =
  88.  
  89. # Default: 10
  90. MaximumDbConnections = 10
  91.  
  92. # Default: 0
  93. MaximumDbIdleTime = 0
  94.  
  95. # ---------------------------------------------------------------------------
  96. # Misc.
  97. # ---------------------------------------------------------------------------
  98. # If False, the license (after the login) will not be shown.
  99. # Default: True
  100. ShowLicence = True
  101.  
  102. # Default: True
  103. AutoCreateAccounts = True
  104.  
  105. # Datapack root directory.
  106. # Defaults to current directory from which the server is started unless the below line is uncommented.
  107. #DatapackRoot = C:/Work/tmp/DataPack
  108.  
  109. # ---------------------------------------------------------------------------
  110. # Developer Settings
  111. # ---------------------------------------------------------------------------
  112. # Default: False
  113. Debug = False
  114.  
  115. # ---------------------------------------------------------------------------
  116. # Restart LS every 24 hours?
  117. # ---------------------------------------------------------------------------
  118. # Default: False, 24
  119. LoginRestartSchedule = False
  120.  
  121. #
  122. LoginRestartTime = 24
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement