]> arthur.barton.de Git - ngircd-alex.git/blob - doc/sample-ngircd.conf.tmpl
d59b139b17e7967f83d1247763775dd2a6030ba2
[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. When not set, ngIRCd tries
28         # to deduce a valid IRC server name from the local host name.
29         ;Name = irc.example.net
30
31         # Information about the server and the administrator, used by the
32         # ADMIN command. Not required by server but by RFC!
33         ;AdminInfo1 = Description
34         ;AdminInfo2 = Location
35         ;AdminEMail = admin@irc.server
36
37         # Text file which contains the ngIRCd help text. This file is required
38         # to display help texts when using the "HELP <cmd>" command. Default: a
39         # built-in standard path (check "ngircd --configtest").
40         ;HelpFile = :DOCDIR:/Commands.txt
41
42         # Info text of the server. This will be shown by WHOIS and
43         # LINKS requests for example. Set to the server software name and
44         # version by default.
45         ;Info = Server Info Text
46
47         # Comma separated list of IP addresses on which the server should
48         # listen. Default values are:
49         # "0.0.0.0" or (if compiled with IPv6 support) "::,0.0.0.0"
50         # so the server listens on all IP addresses of the system by default.
51         ;Listen = 127.0.0.1,192.168.0.1
52
53         # Text file with the "message of the day" (MOTD). This message will
54         # be shown to all users connecting to the server: Default: a built-in
55         # standard path (check "ngircd --configtest").
56         ;MotdFile = :ETCDIR:/ngircd.motd
57
58         # A simple Phrase (<127 chars) if you don't want to use a motd file.
59         ;MotdPhrase = "Hello world!"
60
61         # The name of the IRC network to which this server belongs. This name
62         # is optional, should only contain ASCII characters, and can't contain
63         # spaces. It is only used to inform clients. The default is empty,
64         # so no network name is announced to clients.
65         ;Network = aIRCnetwork
66
67         # Global password for all users needed to connect to the server.
68         # (Default: not set)
69         ;Password = abc
70
71         # This tells ngIRCd to write its current process ID to a file.
72         # Note that the pidfile is written AFTER chroot and switching the
73         # user ID, e.g. the directory the pidfile resides in must be
74         # writable by the ngIRCd user and exist in the chroot directory.
75         ;PidFile = /var/run/ngircd/ngircd.pid
76
77         # Ports on which the server should listen. There may be more than
78         # one port, separated with ",". (Default: 6667)
79         ;Ports = 6667, 6668, 6669
80
81         # Group ID under which the ngIRCd should run; you can use the name
82         # of the group or the numerical ID. ATTENTION: For this to work the
83         # server must have been started with root privileges!
84         ;ServerGID = 65534
85
86         # User ID under which the server should run; you can use the name
87         # of the user or the numerical ID. ATTENTION: For this to work the
88         # server must have been started with root privileges! In addition,
89         # the configuration and MOTD files must be readable by this user,
90         # otherwise RESTART and REHASH won't work!
91         ;ServerUID = 65534
92
93 [Limits]
94         # Define some limits and timeouts for this ngIRCd instance. Default
95         # values should be safe, but it is wise to double-check :-)
96
97         # The server tries every <ConnectRetry> seconds to establish a link
98         # to not yet (or no longer) connected servers.
99         ;ConnectRetry = 60
100
101         # Number of seconds after which the whole daemon should shutdown when
102         # no connections are left active after handling at least one client
103         # (0: never, which is the default).
104         # This can be useful for testing or when ngIRCd is started using
105         # "socket activation" with systemd(8), for example.
106         ;IdleTimeout = 0
107
108         # Maximum number of simultaneous in- and outbound connections the
109         # server is allowed to accept (0: unlimited):
110         ;MaxConnections = 0
111
112         # Maximum number of simultaneous connections from a single IP address
113         # the server will accept (0: unlimited):
114         ;MaxConnectionsIP = 5
115
116         # Maximum number of channels a user can be member of (0: no limit):
117         ;MaxJoins = 10
118
119         # Maximum length of an user nickname (Default: 9, as in RFC 2812).
120         # Please note that all servers in an IRC network MUST use the same
121         # maximum nickname length!
122         ;MaxNickLength = 9
123
124         # Maximum penalty time increase in seconds, per penalty event. Set to -1
125         # for no limit (the default), 0 to disable penalties altogether. The
126         # daemon doesn't use penalty increases higher than 2 seconds during
127         # normal operation, so values greater than 1 rarely make sense.
128         ;MaxPenaltyTime = -1
129
130         # Maximum number of channels returned in response to a /list
131         # command (0: unlimited):
132         ;MaxListSize = 100
133
134         # After <PingTimeout> seconds of inactivity the server will send a
135         # PING to the peer to test whether it is alive or not.
136         ;PingTimeout = 120
137
138         # If a client fails to answer a PING with a PONG within <PongTimeout>
139         # seconds, it will be disconnected by the server.
140         ;PongTimeout = 20
141
142 [Options]
143         # Optional features and configuration options to further tweak the
144         # behavior of ngIRCd. If you want to get started quickly, you most
145         # probably don't have to make changes here -- they are all optional.
146
147         # List of allowed channel types (channel prefixes) for newly created
148         # channels on the local server. By default, all supported channel
149         # types are allowed. Set this variable to the empty string to disallow
150         # creation of new channels by local clients at all.
151         ;AllowedChannelTypes = #&+
152
153         # Are remote IRC operators allowed to control this server, e.g.
154         # use commands like CONNECT, SQUIT, DIE, ...?
155         ;AllowRemoteOper = no
156
157         # A directory to chroot in when everything is initialized. It
158         # doesn't need to be populated if ngIRCd is compiled as a static
159         # binary. By default ngIRCd won't use the chroot() feature.
160         # ATTENTION: For this to work the server must have been started
161         # with root privileges!
162         ;ChrootDir = /var/empty
163
164         # Set this hostname for every client instead of the real one.
165         # Use %x to add the hashed value of the original hostname.
166         ;CloakHost = cloaked.host
167
168         # Use this hostname for hostname cloaking on clients that have the
169         # user mode "+x" set, instead of the name of the server.
170         # Use %x to add the hashed value of the original hostname.
171         ;CloakHostModeX = cloaked.user
172
173         # The Salt for cloaked hostname hashing. When undefined a random
174         # hash is generated after each server start.
175         ;CloakHostSalt = abcdefghijklmnopqrstuvwxyz
176
177         # Set every clients' user name to their nickname
178         ;CloakUserToNick = yes
179
180         # Try to connect to other IRC servers using IPv4 and IPv6, if possible.
181         ;ConnectIPv6 = yes
182         ;ConnectIPv4 = yes
183
184         # Default user mode(s) to set on new local clients. Please note that
185         # only modes can be set that the client could set using regular MODE
186         # commands, you can't set "a" (away) for example! Default: none.
187         ;DefaultUserModes = i
188
189         # Do DNS lookups when a client connects to the server.
190         ;DNS = yes
191
192         # Do IDENT lookups if ngIRCd has been compiled with support for it.
193         # Users identified using IDENT are registered without the "~" character
194         # prepended to their user name.
195         ;Ident = yes
196
197         # Directory containing configuration snippets (*.conf), that should
198         # be read in after parsing this configuration file.
199         # Default: a built-in directory name when no configuration file was
200         # explicitly given on the command line (check "ngircd --configtest"),
201         # none (empty) otherwise.
202         ;IncludeDir = :ETCDIR:/conf.d
203
204         # Enhance user privacy slightly (useful for IRC server on TOR or I2P)
205         # by censoring some information like idle time, logon time, etc.
206         ;MorePrivacy = no
207
208         # Normally ngIRCd doesn't send any messages to a client until it is
209         # registered. Enable this option to let the daemon send "NOTICE *"
210         # messages to clients while connecting.
211         ;NoticeBeforeRegistration = no
212
213         # Should IRC Operators be allowed to use the MODE command even if
214         # they are not(!) channel-operators?
215         ;OperCanUseMode = no
216
217         # Should IRC Operators get AutoOp (+o) in persistent (+P) channels?
218         ;OperChanPAutoOp = yes
219
220         # Mask IRC Operator mode requests as if they were coming from the
221         # server? (This is a compatibility hack for ircd-irc2 servers)
222         ;OperServerMode = no
223
224         # Use PAM if ngIRCd has been compiled with support for it.
225         # Users identified using PAM are registered without the "~" character
226         # prepended to their user name.
227         ;PAM = yes
228
229         # When PAM is enabled, all clients are required to be authenticated
230         # using PAM; connecting to the server without successful PAM
231         # authentication isn't possible.
232         # If this option is set, clients not sending a password are still
233         # allowed to connect: they won't become "identified" and keep the "~"
234         # character prepended to their supplied user name.
235         # Please note: To make some use of this behavior, it most probably
236         # isn't useful to enable "Ident", "PAM" and "PAMIsOptional" at the
237         # same time, because you wouldn't be able to distinguish between
238         # Ident'ified and PAM-authenticated users: both don't have a "~"
239         # character prepended to their respective user names!
240         ;PAMIsOptional = no
241
242         # When PAM is enabled, this value determines the used PAM
243         # configuration.
244         # This setting allows to run multiple ngIRCd instances with
245         # different PAM configurations on each instance.
246         # If you set it to "ngircd-foo", PAM will use
247         # /etc/pam.d/ngircd-foo instead of the default
248         # /etc/pam.d/ngircd.
249         ;PAMServiceName = ngircd
250
251         # Let ngIRCd send an "authentication PING" when a new client connects,
252         # and register this client only after receiving the corresponding
253         # "PONG" reply.
254         ;RequireAuthPing = no
255
256         # Silently drop all incoming CTCP requests.
257         ;ScrubCTCP = no
258
259         # Syslog "facility" to which ngIRCd should send log messages.
260         # Possible values are system dependent, but most probably auth, daemon,
261         # user and local1 through local7 are possible values; see syslog(3).
262         # Default is "local5" for historical reasons, you probably want to
263         # change this to "daemon", for example.
264         ;SyslogFacility = local1
265
266         # Password required for using the WEBIRC command used by some
267         # Web-to-IRC gateways. If not set/empty, the WEBIRC command can't
268         # be used. (Default: not set)
269         ;WebircPassword = xyz
270
271 ;[SSL]
272         # SSL-related configuration options. Please note that this section
273         # is only available when ngIRCd is compiled with support for SSL!
274         # So don't forget to remove the ";" above if this is the case ...
275
276         # SSL Server Key Certificate
277         ;CertFile = :ETCDIR:/ssl/server-cert.pem
278
279         # Select cipher suites allowed for SSL/TLS connections. This defaults
280         # to HIGH:!aNULL:@STRENGTH (OpenSSL) or SECURE128 (GnuTLS).
281         # See 'man 1ssl ciphers' (OpenSSL) or 'man 3 gnutls_priority_init'
282         # (GnuTLS) for details.
283         # For OpenSSL:
284         ;CipherList = HIGH:!aNULL:@STRENGTH:!SSLv3
285         # For GnuTLS:
286         ;CipherList = SECURE128:-VERS-SSL3.0
287
288         # Diffie-Hellman parameters
289         ;DHFile = :ETCDIR:/ssl/dhparams.pem
290
291         # SSL Server Key
292         ;KeyFile = :ETCDIR:/ssl/server-key.pem
293
294         # password to decrypt SSLKeyFile (OpenSSL only)
295         ;KeyFilePassword = secret
296
297         # Additional Listen Ports that expect SSL/TLS encrypted connections
298         ;Ports = 6697, 9999
299
300 [Operator]
301         # [Operator] sections are used to define IRC Operators. There may be
302         # more than one [Operator] block, one for each local operator.
303
304         # ID of the operator (may be different of the nickname)
305         ;Name = TheOper
306
307         # Password of the IRC operator
308         ;Password = ThePwd
309
310         # Optional Mask from which /OPER will be accepted
311         ;Mask = *!ident@somewhere.example.com
312
313 [Operator]
314         # More [Operator] sections, if you like ...
315
316 [Server]
317         # Other servers are configured in [Server] sections. If you
318         # configure a port for the connection, then this ngircd tries to
319         # connect to the other server on the given port; if not it waits
320         # for the other server to connect.
321         # There may be more than one server block, one for each server.
322         #
323         # Server Groups:
324         # The ngIRCd allows "server groups": You can assign an "ID" to every
325         # server with which you want this ngIRCd to link. If a server of a
326         # group won't answer, the ngIRCd tries to connect to the next server
327         # in the given group. But the ngircd never tries to connect to two
328         # servers with the same group ID.
329
330         # IRC name of the remote server, must match the "Name" variable in
331         # the [Global] section of the other server (when using ngIRCd).
332         ;Name = irc2.example.net
333
334         # Internet host name or IP address of the peer (only required when
335         # this server should establish the connection).
336         ;Host = connect-to-host.example.net
337
338         # IP address to use as _source_ address for the connection. if
339         # unspecified, ngircd will let the operating system pick an address.
340         ;Bind = 10.0.0.1
341
342         # Port of the server to which the ngIRCd should connect. If you
343         # assign no port the ngIRCd waits for incoming connections.
344         ;Port = 6667
345
346         # Own password for the connection. This password has to be configured
347         # as "PeerPassword" on the other server.
348         ;MyPassword = MySecret
349
350         # Foreign password for this connection. This password has to be
351         # configured as "MyPassword" on the other server.
352         ;PeerPassword = PeerSecret
353
354         # Group of this server (optional)
355         ;Group = 123
356
357         # Set the "Passive" option to "yes" if you don't want this ngIRCd to
358         # connect to the configured peer (same as leaving the "Port" variable
359         # empty). The advantage of this option is that you can actually
360         # configure a port an use the IRC command CONNECT more easily to
361         # manually connect this specific server later.
362         ;Passive = no
363
364         # Connect to the remote server using TLS/SSL (Default: false)
365         ;SSLConnect = yes
366
367         # Define a (case insensitive) list of masks matching nicknames that
368         # should be treated as IRC services when introduced via this remote
369         # server, separated by commas (",").
370         # REGULAR SERVERS DON'T NEED this parameter, so leave it empty
371         # (which is the default).
372         # When you are connecting IRC services which mask as a IRC server
373         # and which use "virtual users" to communicate with, for example
374         # "NickServ" and "ChanServ", you should set this parameter to
375         # something like "*Serv" or "NickServ,ChanServ,XyzServ".
376         ;ServiceMask = *Serv,Global
377
378 [Server]
379         # More [Server] sections, if you like ...
380
381 [Channel]
382         # Pre-defined channels can be configured in [Channel] sections.
383         # Such channels are created by the server when starting up and even
384         # persist when there are no more members left.
385         # Persistent channels are marked with the mode 'P', which can be set
386         # and unset by IRC operators like other modes on the fly.
387         # There may be more than one [Channel] block, one for each channel.
388
389         # Name of the channel
390         ;Name = #TheName
391
392         # Topic for this channel
393         ;Topic = a great topic
394
395         # Initial channel modes, as used in "MODE" commands. Modifying lists
396         # (ban list, invite list, exception list) is supported.
397         # This option can be specified multiple times, evaluated top to bottom.
398         ;Modes = +tnk mykey +l 5
399         ;Modes = +b nick!~user@bad.host.example.com
400
401         # Should ngIRCd automatically join ("autojoin") all users to this
402         # channel on connect? Note: The users must have permissions to access
403         # the channel, otherwise joining them will fail!
404         ;Autojoin = yes
405
406         # Key file, syntax for each line: "<user>:<nick>:<key>".
407         # Default: none.
408         ;KeyFile = :ETCDIR:/#chan.key
409
410 [Channel]
411         # More [Channel] sections, if you like ...
412
413 # -eof-