Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. ################################################################################
  2. # AscEmu Logonserver Configuration File
  3. # Last edited: 3/14/2015
  4. ################################################################################
  5.  
  6. ################################################################################
  7. # Database Section
  8. #
  9. # LogonDatabase.Host - The hostname that the database is located on
  10. # LogonDatabase.Username - The username used for the mysql connection
  11. # LogonDatabase.Password - The password used for the mysql connection
  12. # LogonDatabase.Name - The database name
  13. # LogonDatabase.Port - Port that MySQL listens on. Usually 3306.
  14. #
  15.  
  16. <LogonDatabase Hostname = "localhost"
  17. Username = "root"
  18. Password = "ascent"
  19. Name = "logon"
  20. Port = "3306">
  21.  
  22. ################################################################################
  23. # Host Directive
  24. #
  25. # This is the address that the realmlist will listen on.
  26. # To listen on all addresses, set it to 0.0.0.0
  27. # Default: 127.0.0.1 (localhost)
  28. #
  29. # Note: ISHost is the interserver communication listener.
  30. #
  31.  
  32. <Listen Host = "0.0.0.0"
  33. ISHost = "0.0.0.0"
  34. RealmListPort = "3724"
  35. ServerPort = "8093">
  36.  
  37. ################################################################################
  38. # Server file logging level
  39. #
  40. # This directive controls how much output the server will
  41. # write to log files. It cannot be disabled
  42. # 0 = Normal + Error; 1 = Detail; 2 = Debug
  43. # Default: 0
  44. #
  45.  
  46. <LogLevel File = "0">
  47.  
  48. ################################################################################
  49. # Account Refresh Time
  50. #
  51. # This controls on which time interval accounts gets refreshed. (In seconds)
  52. # 600 seconds = 10 minutes
  53. # 300 seconds = 5 minutes
  54. # Default = 600
  55. #
  56.  
  57. <Rates AccountRefresh = "600">
  58.  
  59. ################################################################################
  60. # WorldServer Setup
  61. #
  62. # RemotePassword
  63. # This directive controls the password used to authenticate with the worldserver.
  64. # It must be the same between the two configs. If it is not, your server will
  65. # not register.
  66. # Default: "change_me_logon"
  67. #
  68. # AllowedIPs
  69. # This section MUST be completed, otherwise all attempts to link your servers will fail.
  70. # These "Allowed" fields are a space-separated list of CIDR-form IP addresses that are allowed
  71. # to make server connections to your logonserver, and register realms.
  72. # For example, everything in the 127.0.0.* range would be:
  73. # 127.0.0.0/24, as 24 of the bits must match the 127.0.0.0
  74. #
  75. # To allow a single IP,
  76. # 1.3.3.7/32, would allow only 1.3.3.7 to connect as 32 of the bits must match.
  77. #
  78. # AllowedModIPs
  79. # In the same form as AllowedIPs, these are the IPs that are allowed to modify the database
  80. # (adding bans, GMs, account permissions, etc)
  81. #
  82.  
  83. <LogonServer RemotePassword = "samepass"
  84. AllowedIPs = "127.0.0.1/24"
  85. AllowedModIPs = "127.0.0.1/24">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement