]> arthur.barton.de Git - ngircd-alex.git/blob - doc/sample-ngircd.conf.tmpl
sample-ngircd.conf: "SyslogFacility" should be commented out
[ngircd-alex.git] / doc / sample-ngircd.conf.tmpl
1 #
2 # This is a sample configuration file for the ngIRCd IRC daemon, which must
3 # be customized to the local preferences and needs.
4 #
5 # Comments are started with "#" or ";".
6 #
7 # A lot of configuration options in this file start with a ";". You have
8 # to remove the ";" in front of each variable to actually set a value!
9 # The disabled variables are shown with example values for completeness only
10 # and the daemon is using compiled-in default settings.
11 #
12 # Use "ngircd --configtest" (see manual page ngircd(8)) to validate that the
13 # server interprets the configuration file as expected!
14 #
15 # Please see ngircd.conf(5) for a complete list of configuration options
16 # and their descriptions.
17 #
18
19 [Global]
20         # The [Global] section of this file is used to define the main
21         # configuration of the server, like the server name and the ports
22         # on which the server should be listening.
23         # These settings depend on your personal preferences, so you should
24         # make sure that they correspond to your installation and setup!
25
26         # Server name in the IRC network, must contain at least one dot
27         # (".") and be unique in the IRC network. Required!
28         Name = irc.example.net
29
30         # Information about the server and the administrator, used by the
31         # ADMIN command. Not required by server but by RFC!
32         ;AdminInfo1 = Description
33         ;AdminInfo2 = Location
34         ;AdminEMail = admin@irc.server
35
36         # Info text of the server. This will be shown by WHOIS and
37         # LINKS requests for example.
38         Info = Server Info Text
39
40         # Comma separated list of IP addresses on which the server should
41         # listen. Default values are:
42         # "0.0.0.0" or (if compiled with IPv6 support) "::,0.0.0.0"
43         # so the server listens on all IP addresses of the system by default.
44         ;Listen = 127.0.0.1,192.168.0.1
45
46         # Text file with the "message of the day" (MOTD). This message will
47         # be shown to all users connecting to the server:
48         ;MotdFile = :ETCDIR:/ngircd.motd
49
50         # A simple Phrase (<256 chars) if you don't want to use a motd file.
51         ;MotdPhrase = "Hello world!"
52
53         # Global password for all users needed to connect to the server.
54         # (Default: not set)
55         ;Password = abc
56
57         # This tells ngIRCd to write its current process ID to a file.
58         # Note that the pidfile is written AFTER chroot and switching the
59         # user ID, e.g. the directory the pidfile resides in must be
60         # writeable by the ngIRCd user and exist in the chroot directory.
61         ;PidFile = /var/run/ngircd/ngircd.pid
62
63         # Ports on which the server should listen. There may be more than
64         # one port, separated with ",". (Default: 6667)
65         ;Ports = 6667, 6668, 6669
66
67         # Group ID under which the ngIRCd should run; you can use the name
68         # of the group or the numerical ID. ATTENTION: For this to work the
69         # server must have been started with root privileges!
70         ;ServerGID = 65534
71
72         # User ID under which the server should run; you can use the name
73         # of the user or the numerical ID. ATTENTION: For this to work the
74         # server must have been started with root privileges! In addition,
75         # the configuration and MOTD files must be readable by this user,
76         # otherwise RESTART and REHASH won't work!
77         ;ServerUID = 65534
78
79 [Limits]
80         # Define some limits and timeouts for this ngIRCd instance. Default
81         # values should be safe, but it is wise to double-check :-)
82
83         # The server tries every <ConnectRetry> seconds to establish a link
84         # to not yet (or no longer) connected servers.
85         ;ConnectRetry = 60
86
87         # Maximum number of simultaneous in- and outbound connections the
88         # server is allowed to accept (0: unlimited):
89         ;MaxConnections = 0
90
91         # Maximum number of simultaneous connections from a single IP address
92         # the server will accept (0: unlimited):
93         ;MaxConnectionsIP = 5
94
95         # Maximum number of channels a user can be member of (0: no limit):
96         ;MaxJoins = 10
97
98         # Maximum length of an user nick name (Default: 9, as in RFC 2812).
99         # Please note that all servers in an IRC network MUST use the same
100         # maximum nick name length!
101         ;MaxNickLength = 9
102
103         # After <PingTimeout> seconds of inactivity the server will send a
104         # PING to the peer to test whether it is alive or not.
105         ;PingTimeout = 120
106
107         # If a client fails to answer a PING with a PONG within <PongTimeout>
108         # seconds, it will be disconnected by the server.
109         ;PongTimeout = 20
110
111 [Options]
112         # Optional features and configuration options to further tweak the
113         # behavior of ngIRCd. If you wan't to get started quickly, you most
114         # probably don't have to make changes here -- they are all optional.
115
116         # Are remote IRC operators allowed to control this server, e.g.
117         # use commands like CONNECT, SQUIT, DIE, ...?
118         ;AllowRemoteOper = no
119
120         # A directory to chroot in when everything is initialized. It
121         # doesn't need to be populated if ngIRCd is compiled as a static
122         # binary. By default ngIRCd won't use the chroot() feature.
123         # ATTENTION: For this to work the server must have been started
124         # with root privileges!
125         ;ChrootDir = /var/empty
126
127         # Set this hostname for every client instead of the real one.
128         # Please note: don't use the percentage sign ("%"), it is reserved for
129         # future extensions!
130         ;CloakHost = irc.example.net
131
132         # Set every clients' user name to their nick name
133         ;CloakUserToNick = yes
134
135         # Try to connect to other IRC servers using IPv4 and IPv6, if possible.
136         ;ConnectIPv6 = yes
137         ;ConnectIPv4 = yes
138
139         # Do any DNS lookups when a client connects to the server.
140         ;DNS = yes
141
142         # Do IDENT lookups if ngIRCd has been compiled with support for it.
143         ;Ident = yes
144
145         # Normally ngIRCd doesn't send any messages to a client until it is
146         # registered. Enable this option to let the daemon send "NOTICE AUTH"
147         # messages to clients while connecting.
148         ;NoticeAuth = no
149
150         # Should IRC Operators be allowed to use the MODE command even if
151         # they are not(!) channel-operators?
152         ;OperCanUseMode = no
153
154         # Mask IRC Operator mode requests as if they were coming from the
155         # server? (This is a compatibility hack for ircd-irc2 servers)
156         ;OperServerMode = no
157
158         # Use PAM if ngIRCd has been compiled with support for it.
159         ;PAM = no
160
161         # Allow Pre-Defined Channels only (see Section [Channels])
162         ;PredefChannelsOnly = no
163
164         # Let ngIRCd send an "authentication PING" when a new client connects,
165         # and register this client only after receiving the corresponding
166         # "PONG" reply.
167         ;RequireAuthPing = no
168
169         # Syslog "facility" to which ngIRCd should send log messages.
170         # Possible values are system dependent, but most probably auth, daemon,
171         # user and local1 through local7 are possible values; see syslog(3).
172         # Default is "local5" for historical reasons, you probably want to
173         # change this to "daemon", for example.
174         ;SyslogFacility = local1
175
176         # Password required for using the WEBIRC command used by some
177         # Web-to-IRC gateways. If not set/empty, the WEBIRC command can't
178         # be used. (Default: not set)
179         ;WebircPassword = xyz
180
181 ;[SSL]
182         # SSL-related configuration options. Please note that this section
183         # is only available when ngIRCd is compiled with support for SSL!
184         # So don't forget to remove the ";" above if this is the case ...
185
186         # SSL Server Key Certificate
187         ;SSLCertFile = :ETCDIR:/ssl/server-cert.pem
188
189         # Diffie-Hellman parameters
190         ;SSLDHFile = :ETCDIR:/ssl/dhparams.pem
191
192         # SSL Server Key
193         ;SSLKeyFile = :ETCDIR:/ssl/server-key.pem
194
195         # password to decrypt SSLKeyFile (OpenSSL only)
196         ;SSLKeyFilePassword = secret
197
198         # Additional Listen Ports that expect SSL/TLS encrypted connections
199         ;SSLPorts = 6697, 9999
200
201 [Operator]
202         # [Operator] sections are used to define IRC Operators. There may be
203         # more than one [Operator] block, one for each local operator.
204
205         # ID of the operator (may be different of the nick name)
206         ;Name = TheOper
207
208         # Password of the IRC operator
209         ;Password = ThePwd
210
211         # Optional Mask from which /OPER will be accepted
212         ;Mask = *!ident@somewhere.example.com
213
214 [Operator]
215         # More [Operator] sections, if you like ...
216
217 [Server]
218         # Other servers are configured in [Server] sections. If you
219         # configure a port for the connection, then this ngircd tries to
220         # connect to to the other server on the given port; if not it waits
221         # for the other server to connect.
222         # There may be more than one server block, one for each server.
223         #
224         # Server Groups:
225         # The ngIRCd allows "server groups": You can assign an "ID" to every
226         # server with which you want this ngIRCd to link. If a server of a
227         # group won't answer, the ngIRCd tries to connect to the next server
228         # in the given group. But the ngircd never tries to connect to two
229         # servers with the same group ID.
230
231         # IRC name of the remote server, must match the "Name" variable in
232         # the [Global] section of the other server (when using ngIRCd).
233         ;Name = irc2.example.net
234
235         # Internet host name or IP address of the peer (only required when
236         # this server should establish the connection).
237         ;Host = connect-to-host.example.net
238
239         # IP address to use as _source_ address for the connection. if
240         # unspecified, ngircd will let the operating system pick an address.
241         ;Bind = 10.0.0.1
242
243         # Port of the server to which the ngIRCd should connect. If you
244         # assign no port the ngIRCd waits for incoming connections.
245         ;Port = 6667
246
247         # Own password for the connection. This password has to be configured
248         # as "PeerPassword" on the other server.
249         ;MyPassword = MySecret
250
251         # Foreign password for this connection. This password has to be
252         # configured as "MyPassword" on the other server.
253         ;PeerPassword = PeerSecret
254
255         # Group of this server (optional)
256         ;Group = 123
257
258         # Set the "Passive" option to "yes" if you don't want this ngIRCd to
259         # connect to the configured peer (same as leaving the "Port" variable
260         # empty). The advantage of this option is that you can actually
261         # configure a port an use the IRC command CONNECT more easily to
262         # manually connect this specific server later.
263         ;Passive = no
264
265         # Connect to the remote server using TLS/SSL (Default: false)
266         ;SSLConnect = yes
267
268         # Define a (case insensitive) mask matching nick names that should be
269         # treated as IRC services when introduced via this remote server.
270         # REGULAR SERVERS DON'T NEED this parameter, so leave it empty
271         # (which is the default).
272         # When you are connecting IRC services which mask as a IRC server
273         # and which use "virtual users" to communicate with, for example
274         # "NickServ" and "ChanServ", you should set this parameter to
275         # something like "*Serv".
276         ;ServiceMask = *Serv
277
278 [Server]
279         # More [Server] sections, if you like ...
280
281 [Channel]
282         # Pre-defined channels can be configured in [Channel] sections.
283         # Such channels are created by the server when starting up and even
284         # persist when there are no more members left.
285         # Persistent channels are marked with the mode 'P', which can be set
286         # and unset by IRC operators like other modes on the fly.
287         # There may be more than one [Channel] block, one for each channel.
288
289         # Name of the channel
290         ;Name = #TheName
291
292         # Topic for this channel
293         ;Topic = a great topic
294
295         # Initial channel modes
296         ;Modes = tnk
297
298         # initial channel password (mode k)
299         ;Key = Secret
300
301         # Key file, syntax for each line: "<user>:<nick>:<key>".
302         # Default: none.
303         ;KeyFile = :ETCDIR:/#chan.key
304
305         # maximum users per channel (mode l)
306         ;MaxUsers = 23
307
308 [Channel]
309         # More [Channel] sections, if you like ...
310
311 # -eof-