root/trunk/src/trinityrealm/trinityrealm.conf.dist @ 2

Revision 2, 3.9 kB (checked in by yumileroy, 17 years ago)

[svn] * Proper SVN structure

Original author: Neo2003
Date: 2008-10-02 16:23:55-05:00

Line 
1############################################
2# MaNGOS realmd configuration file         #
3############################################
4ConfVersion=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
99LoginDatabaseInfo = "127.0.0.1;3306;root;mangos;realmd"
100LogsDir = ""
101MaxPingTime = 30
102RealmServerPort = 3724
103BindIP = "0.0.0.0"
104PidFile = ""
105LogLevel = 0
106LogTime = 0
107LogFile = "Realmd.log"
108LogTimestamp = 0
109LogFileLevel = 0
110LogColors = ""
111UseProcessors = 0
112ProcessPriority = 1
113RealmsStateUpdateDelay = 20
114WrongPass.MaxCount = 0
115WrongPass.BanTime = 600
116WrongPass.BanType = 0
Note: See TracBrowser for help on using the browser.