Merge commit 'mangos/master'
[auctionmangos.git] / src / realmd / realmd.conf.dist.in
blob217cb15d2bb5a1441bebce2355d7c89cd0e209b2
1 ############################################
2 # MaNGOS realmd configuration file         #
3 ############################################
4 ConfVersion=2007062001
6 ###################################################################################################################
7 # REALMD SETTINGS
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
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.
23 #    MaxPingTime
24 #         Settings for maximum database-ping interval (minutes between pings)
26 #    RealmServerPort
27 #         Default RealmServerPort
29 #    BindIP
30 #         Bind Realm Server to IP/hostname
32 #    PidFile
33 #        Realmd daemon PID file
34 #        Default: ""             - do not create PID file
35 #                 "./realmd.pid" - create PID file (recommended name)
37 #    LogLevel
38 #        Server console level of logging
39 #        0 = Minimum; 1 = Error; 2 = Detail; 3 = Full/Debug
40 #        Default: 0
42 #    LogTime
43 #        Include time in server console output [hh:mm:ss]
44 #        Default: 0 (no time)
45 #                 1 (print time)
47 #    LogFile
48 #        Logfile name
49 #        Default: "Realmd.log"
50 #                 "" - empty name disable creating log file
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
57 #    LogFileLevel
58 #        Server file level of logging
59 #        0 = Minimum; 1 = Error; 2 = Detail; 3 = Full/Debug
60 #        Default: 0
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 :)
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)
74 #    ProcessPriority
75 #        Process proirity setting (Used only at Windows)
76 #        Default: 1 (HIGH)
77 #                 0 (Normal)
79 #    RealmsStateUpdateDelay
80 #        Realm list Update up delay (updated at realm list request if delay expired).
81 #        Default: 20
82 #                 0  (Disabled)
84 #    WrongPass.MaxCount
85 #        Number of login attemps with wrong password before the account or IP is banned
86 #        Default: 0  (Never ban)
88 #    WrongPass.BanTime
89 #        Duration of the ban in seconds (0 means permanent ban)
90 #        Default: 600
92 #    WrongPass.BanType
93 #        Ban the IP or account on which login is attempted
94 #        Default: 0 (Ban IP)
95 #                 1 (Ban Account)
97 ###################################################################################################################
99 LoginDatabaseInfo = "127.0.0.1;3306;root;mangos;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