Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.16 KB | None | 0 0
  1. #######################################################################
  2. # ArcEmu Realms Configuration File
  3. # Last updated at revision 425 by neo_mat
  4. #######################################################################
  5.  
  6. /********************************************************************************
  7. * How to use this config file: *
  8. * Config files are in a block->variable->setting format. *
  9. * A < signifies the opening of a block, the block name is expected after that. *
  10. * After the block name, a space and then the settings sperated by = / ' '. *
  11. * *
  12. * e.g. *
  13. * <block setting="0" someval = "1"> *
  14. * *
  15. * Comments can be in C format, e.g. /* some stuff */, with a // at the start *
  16. * of the line, or in shell format (#). *
  17. ********************************************************************************/
  18.  
  19. # LogonDatabase Section
  20. #
  21. # These directives are the location of the `realms` and `accounts`
  22. # tables.
  23. #
  24. # LogonDatabase.Host - The hostname that the database is located on
  25. # LogonDatabase.Username - The username used for the mysql connection
  26. # LogonDatabase.Password - The password used for the mysql connection
  27. # LogonDatabase.Name - The database name
  28. # LogonDatabase.Port - Port that MySQL listens on. Usually 3306.
  29. # LogonDatabase.Type - Client to use. 1 = MySQL, 2 = PostgreSQL, 3 = Oracle 10g
  30. #
  31.  
  32. <LogonDatabase Hostname = "localhost"
  33. Username = "root"
  34. Password = "ascent"
  35. Name = "logon"
  36. Port = "3306"
  37. Type = "1">
  38.  
  39.  
  40. # Host Directive
  41. #
  42. # This is the address that the realmlist will listen on.
  43. # To listen on all addresses, set it to 0.0.0.0
  44. # Default: 127.0.0.1 (localhost)
  45. #
  46. # Note: ISHost is the interserver communication listener.
  47. #
  48.  
  49. <Listen Host = "0.0.0.0"
  50. ISHost = "0.0.0.0"
  51. RealmListPort = "3724"
  52. ServerPort = "8093">
  53.  
  54. # Server console logging level
  55. #
  56. # This directive controls how much output the server will
  57. # display in it's console. Set to 0 for none.
  58. # 0 = Minimum; 1 = Error; 2 = Detail; 3 = Full/Debug
  59. # Default: 3
  60. #
  61.  
  62. <LogLevel Screen = "0"
  63. File = "-1">
  64.  
  65. # Account Refresh Time
  66. #
  67. # This controls on which time interval accounts gets
  68. # refreshed. (In seconds)
  69. # Default = 600
  70. #
  71.  
  72. <Rates AccountRefresh = "600">
  73.  
  74. # Accepted Build Range Setup
  75. #
  76. # These two directives set up which clients will be
  77. # allowed to authenticate with the realm list.
  78. #
  79. # Set these to the same builds that the server was
  80. # compiled for.
  81. #
  82. # As of the last update, version 2.1.1 was build 6739.
  83. #
  84.  
  85. <Client MinBuild = "8606"
  86. MaxBuild = "8606">
  87.  
  88. # WorldServer Setup
  89. #
  90. # RemotePassword
  91. # This directive controls the password used to authenticate with the worldserver.
  92. # It must be the same between the two configs. If it is not, your server will
  93. # not register.
  94. #
  95. # Default: "change_me_logon"
  96. #
  97. # AllowedIPs
  98. # This section MUST be completed, otherwise all attempts to link your servers will fail.
  99. # These "Allowed" fields are a space-seperated list of CIDR-form IP addresses that are allowed
  100. # to make server connections to your logonserver, and register realms.
  101. # For example, everything in the 127.0.0.* range would be:
  102. # 127.0.0.0/24, as 24 of the bits must match the 127.0.0.0
  103. #
  104. # To allow a single IP,
  105. # 1.3.3.7/32, would allow only 1.3.3.7 to connect as 32 of the bits must match.
  106. #
  107. # AllowedModIPs
  108. # In the same form as AllowedIPs, these are the IPs that are allowed to modify the database
  109. # (adding bans, GMs, account permissions, etc)
  110. #
  111.  
  112. <LogonServer RemotePassword = "ascent"
  113. AllowedIPs = "127.0.0.0/24"
  114. AllowedModIPs = "127.0.0.0/24">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement