1 | ########################################## |
---|
2 | # Trinity Core realmd configuration file # |
---|
3 | ########################################## |
---|
4 | ConfVersion=2007062001 |
---|
5 | |
---|
6 | ################################################################################################################### |
---|
7 | # REALMD SETTINGS |
---|
8 | # |
---|
9 | # LoginDatabaseInfo |
---|
10 | # Database connection settings for the realm server. |
---|
11 | # Default: hostname;port;username;password;database |
---|
12 | # .;somenumber;username;password;database - use named pipes at Windows |
---|
13 | # Named pipes: mySQL required adding "enable-named-pipe" to [mysqld] section my.ini |
---|
14 | # .;/path/to/unix_socket;username;password;database - use Unix sockets at Unix/Linux |
---|
15 | # Unix sockets: experimental, not tested |
---|
16 | # |
---|
17 | # LogsDir |
---|
18 | # Logs directory setting. |
---|
19 | # Important: Logs dir must exists, or all logs be disable |
---|
20 | # Default: "" - no log directory prefix, if used log names isn't absolute path then logs will be |
---|
21 | # stored in current directory for run program. |
---|
22 | # |
---|
23 | # MaxPingTime |
---|
24 | # Settings for maximum database-ping interval (minutes between pings) |
---|
25 | # |
---|
26 | # RealmServerPort |
---|
27 | # Default RealmServerPort |
---|
28 | # |
---|
29 | # BindIP |
---|
30 | # Bind Realm Server to IP/hostname |
---|
31 | # |
---|
32 | # PidFile |
---|
33 | # Realmd daemon PID file |
---|
34 | # Default: "" - do not create PID file |
---|
35 | # "./realmd.pid" - create PID file (recommended name) |
---|
36 | # |
---|
37 | # LogLevel |
---|
38 | # Server console level of logging |
---|
39 | # 0 = Minimum; 1 = Error; 2 = Detail; 3 = Full/Debug |
---|
40 | # Default: 0 |
---|
41 | # |
---|
42 | # LogTime |
---|
43 | # Include time in server console output [hh:mm:ss] |
---|
44 | # Default: 0 (no time) |
---|
45 | # 1 (print time) |
---|
46 | # |
---|
47 | # LogFile |
---|
48 | # Logfile name |
---|
49 | # Default: "realmd.log" |
---|
50 | # "" - empty name disable creating log file |
---|
51 | # |
---|
52 | # LogTimestamp |
---|
53 | # Logfile with timestamp of server start in name |
---|
54 | # Default: 0 - no timestamp in name |
---|
55 | # 1 - add timestamp in name in form Logname_YYYY-MM-DD_HH-MM-SS.Ext for Logname.Ext |
---|
56 | # |
---|
57 | # LogFileLevel |
---|
58 | # Server file level of logging |
---|
59 | # 0 = Minimum; 1 = Error; 2 = Detail; 3 = Full/Debug |
---|
60 | # Default: 0 |
---|
61 | # |
---|
62 | # LogColors |
---|
63 | # Color for messages (format "normal_color details_color debug_color error_color) |
---|
64 | # Colors: 0 - BLACK, 1 - RED, 2 - GREEN, 3 - BROWN, 4 - BLUE, 5 - MAGENTA, 6 - CYAN, 7 - GREY, |
---|
65 | # 8 - YELLOW, 9 - LRED, 10 - LGREEN, 11 - LBLUE, 12 - LMAGENTA, 13 - LCYAN, 14 - WHITE |
---|
66 | # Default: "" - none colors |
---|
67 | # "13 7 11 9" - for example :) |
---|
68 | # |
---|
69 | # UseProcessors |
---|
70 | # Used processors mask for multi-processors system (Used only at Windows) |
---|
71 | # Default: 0 (selected by OS) |
---|
72 | # number (bitmask value of selected processors) |
---|
73 | # |
---|
74 | # ProcessPriority |
---|
75 | # Process proirity setting (Used only at Windows) |
---|
76 | # Default: 1 (HIGH) |
---|
77 | # 0 (Normal) |
---|
78 | # |
---|
79 | # RealmsStateUpdateDelay |
---|
80 | # Realm list Update up delay (updated at realm list request if delay expired). |
---|
81 | # Default: 20 |
---|
82 | # 0 (Disabled) |
---|
83 | # |
---|
84 | # WrongPass.MaxCount |
---|
85 | # Number of login attemps with wrong password before the account or IP is banned |
---|
86 | # Default: 0 (Never ban) |
---|
87 | # |
---|
88 | # WrongPass.BanTime |
---|
89 | # Duration of the ban in seconds (0 means permanent ban) |
---|
90 | # Default: 600 |
---|
91 | # |
---|
92 | # WrongPass.BanType |
---|
93 | # Ban the IP or account on which login is attempted |
---|
94 | # Default: 0 (Ban IP) |
---|
95 | # 1 (Ban Account) |
---|
96 | # |
---|
97 | ################################################################################################################### |
---|
98 | |
---|
99 | LoginDatabaseInfo = "127.0.0.1;3306;trinity;trinity;realmd" |
---|
100 | LogsDir = "" |
---|
101 | MaxPingTime = 30 |
---|
102 | RealmServerPort = 3724 |
---|
103 | BindIP = "0.0.0.0" |
---|
104 | PidFile = "" |
---|
105 | LogLevel = 0 |
---|
106 | LogTime = 0 |
---|
107 | LogFile = "realmd.log" |
---|
108 | LogTimestamp = 0 |
---|
109 | LogFileLevel = 0 |
---|
110 | LogColors = "" |
---|
111 | UseProcessors = 0 |
---|
112 | ProcessPriority = 1 |
---|
113 | RealmsStateUpdateDelay = 20 |
---|
114 | WrongPass.MaxCount = 0 |
---|
115 | WrongPass.BanTime = 600 |
---|
116 | WrongPass.BanType = 0 |
---|
117 | |
---|
118 | ################################################################################################################### |
---|
119 | # CLIENT BUILD OPTIONS |
---|
120 | # |
---|
121 | # Client Builds: |
---|
122 | # |
---|
123 | # MinBuild |
---|
124 | # The minium client build allowed to connect |
---|
125 | # |
---|
126 | # MaxBuild |
---|
127 | # The maximum client build allowed to connect |
---|
128 | # |
---|
129 | ################################################################################################################### |
---|
130 | |
---|
131 | MinBuild = 8606 |
---|
132 | MaxBuild = 8606 |
---|