]> arthur.barton.de Git - ngircd-alex.git/blob - doc/sample-ngircd.conf.tmpl
Merge branch 'ScrubCTCP'
[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         # Silently drop all incomming CTCP requests.
170         ;ScrubCTCP = no
171
172         # Syslog "facility" to which ngIRCd should send log messages.
173         # Possible values are system dependent, but most probably auth, daemon,
174         # user and local1 through local7 are possible values; see syslog(3).
175         # Default is "local5" for historical reasons, you probably want to
176         # change this to "daemon", for example.
177         ;SyslogFacility = local1
178
179         # Password required for using the WEBIRC command used by some
180         # Web-to-IRC gateways. If not set/empty, the WEBIRC command can't
181         # be used. (Default: not set)
182         ;WebircPassword = xyz
183
184 ;[SSL]
185         # SSL-related configuration options. Please note that this section
186         # is only available when ngIRCd is compiled with support for SSL!
187         # So don't forget to remove the ";" above if this is the case ...
188
189         # SSL Server Key Certificate
190         ;SSLCertFile = :ETCDIR:/ssl/server-cert.pem
191
192         # Diffie-Hellman parameters
193         ;SSLDHFile = :ETCDIR:/ssl/dhparams.pem
194
195         # SSL Server Key
196         ;SSLKeyFile = :ETCDIR:/ssl/server-key.pem
197
198         # password to decrypt SSLKeyFile (OpenSSL only)
199         ;SSLKeyFilePassword = secret
200
201         # Additional Listen Ports that expect SSL/TLS encrypted connections
202         ;SSLPorts = 6697, 9999
203
204 [Operator]
205         # [Operator] sections are used to define IRC Operators. There may be
206         # more than one [Operator] block, one for each local operator.
207
208         # ID of the operator (may be different of the nick name)
209         ;Name = TheOper
210
211         # Password of the IRC operator
212         ;Password = ThePwd
213
214         # Optional Mask from which /OPER will be accepted
215         ;Mask = *!ident@somewhere.example.com
216
217 [Operator]
218         # More [Operator] sections, if you like ...
219
220 [Server]
221         # Other servers are configured in [Server] sections. If you
222         # configure a port for the connection, then this ngircd tries to
223         # connect to to the other server on the given port; if not it waits
224         # for the other server to connect.
225         # There may be more than one server block, one for each server.
226         #
227         # Server Groups:
228         # The ngIRCd allows "server groups": You can assign an "ID" to every
229         # server with which you want this ngIRCd to link. If a server of a
230         # group won't answer, the ngIRCd tries to connect to the next server
231         # in the given group. But the ngircd never tries to connect to two
232         # servers with the same group ID.
233
234         # IRC name of the remote server, must match the "Name" variable in
235         # the [Global] section of the other server (when using ngIRCd).
236         ;Name = irc2.example.net
237
238         # Internet host name or IP address of the peer (only required when
239         # this server should establish the connection).
240         ;Host = connect-to-host.example.net
241
242         # IP address to use as _source_ address for the connection. if
243         # unspecified, ngircd will let the operating system pick an address.
244         ;Bind = 10.0.0.1
245
246         # Port of the server to which the ngIRCd should connect. If you
247         # assign no port the ngIRCd waits for incoming connections.
248         ;Port = 6667
249
250         # Own password for the connection. This password has to be configured
251         # as "PeerPassword" on the other server.
252         ;MyPassword = MySecret
253
254         # Foreign password for this connection. This password has to be
255         # configured as "MyPassword" on the other server.
256         ;PeerPassword = PeerSecret
257
258         # Group of this server (optional)
259         ;Group = 123
260
261         # Set the "Passive" option to "yes" if you don't want this ngIRCd to
262         # connect to the configured peer (same as leaving the "Port" variable
263         # empty). The advantage of this option is that you can actually
264         # configure a port an use the IRC command CONNECT more easily to
265         # manually connect this specific server later.
266         ;Passive = no
267
268         # Connect to the remote server using TLS/SSL (Default: false)
269         ;SSLConnect = yes
270
271         # Define a (case insensitive) mask matching nick names that should be
272         # treated as IRC services when introduced via this remote server.
273         # REGULAR SERVERS DON'T NEED this parameter, so leave it empty
274         # (which is the default).
275         # When you are connecting IRC services which mask as a IRC server
276         # and which use "virtual users" to communicate with, for example
277         # "NickServ" and "ChanServ", you should set this parameter to
278         # something like "*Serv".
279         ;ServiceMask = *Serv
280
281 [Server]
282         # More [Server] sections, if you like ...
283
284 [Channel]
285         # Pre-defined channels can be configured in [Channel] sections.
286         # Such channels are created by the server when starting up and even
287         # persist when there are no more members left.
288         # Persistent channels are marked with the mode 'P', which can be set
289         # and unset by IRC operators like other modes on the fly.
290         # There may be more than one [Channel] block, one for each channel.
291
292         # Name of the channel
293         ;Name = #TheName
294
295         # Topic for this channel
296         ;Topic = a great topic
297
298         # Initial channel modes
299         ;Modes = tnk
300
301         # initial channel password (mode k)
302         ;Key = Secret
303
304         # Key file, syntax for each line: "<user>:<nick>:<key>".
305         # Default: none.
306         ;KeyFile = :ETCDIR:/#chan.key
307
308         # maximum users per channel (mode l)
309         ;MaxUsers = 23
310
311 [Channel]
312         # More [Channel] sections, if you like ...
313
314 # -eof-