Advertisement
Guest User

Untitled

a guest
May 25th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. # ================================================================
  2. # General server setting !!! REQUIRED to configure to everyone !!!
  3. # ================================================================
  4.  
  5. # The address on which Community Board server will listen for GameServers, use * to bind on all available IPs
  6. # Default: *
  7. # CSHostname = 127.0.0.1
  8.  
  9. # The port on which Community Board server will listen for GameServers
  10. # Default: 9013
  11. # CSPort = 9013
  12.  
  13. # If set to true any GameServer can register on your login's free slots
  14. AcceptNewGameServer = True
  15.  
  16. # Database info
  17. Driver = com.mysql.jdbc.Driver
  18. #Driver = org.hsqldb.jdbcDriver
  19. #Driver = com.microsoft.sqlserver.jdbc.SQLServerDriver
  20. URL = jdbc:mysql://localhost/l2jdb
  21. #URL = jdbc:hsqldb:hsql://localhost/l2jdb
  22. #URL = jdbc:sqlserver://localhost/database=l2jdb/user=sa/password=
  23. Login = root
  24. Password = root
  25. MaximumDbConnections = 10
  26.  
  27. # ================================================================
  28. # TCP Server start
  29. # ================================================================
  30.  
  31. # ExternalHostAddress: Use * bind all available IPs
  32. # Default: *
  33. ExternalHostAddress = 127.0.0.1
  34. # ExternalPort: Use 0 bind all available Ports
  35. # Default: 0
  36. ExternalPort = 9013
  37. # ConnectionQueue: Maximum connections.
  38. # Default: 50
  39. ConnectionQueue = 50
  40.  
  41. # Default: False
  42. FloodProtectionEnabled = False
  43. # Default: 15
  44. FastConnectionLimit = 15
  45. # Default: 350
  46. FastConnectionTime = 350
  47. # Default: 700
  48. NormalConnectionTime = 700
  49. # Default: 50
  50. MaxConnectionperIP = 50
  51. # Default: False
  52. IPBannEnabled = False
  53. # Default:
  54. IPBannList =
  55.  
  56. # ================================================================
  57. # TCP Client start
  58. # ================================================================
  59. # SendBufferSize: DO NOT TOUCH!
  60. # Default: 8192
  61. SendBufferSize = 8192
  62. # SendBufferSize: DO NOT TOUCH!
  63. # Default: 8192
  64. ReceiveBufferSize = 8192
  65.  
  66. # ================================================================
  67. # Threading
  68. # ================================================================
  69. # Approximated number of working threads running simultaneously in the pool
  70. ThreadPoolSize = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement