sample-ngircd.conf.tmpl 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  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. [Global]
  19. # The [Global] section of this file is used to define the main
  20. # configuration of the server, like the server name and the ports
  21. # on which the server should be listening.
  22. # These settings depend on your personal preferences, so you should
  23. # make sure that they correspond to your installation and setup!
  24. # Server name in the IRC network, must contain at least one dot
  25. # (".") and be unique in the IRC network. Required!
  26. Name = irc.example.net
  27. # Information about the server and the administrator, used by the
  28. # ADMIN command. Not required by server but by RFC!
  29. ;AdminInfo1 = Description
  30. ;AdminInfo2 = Location
  31. ;AdminEMail = admin@irc.server
  32. # Text file which contains the ngIRCd help text. This file is required
  33. # to display help texts when using the "HELP <cmd>" command.
  34. ;HelpFile = :DOCDIR:/Commands.txt
  35. # Info text of the server. This will be shown by WHOIS and
  36. # LINKS requests for example.
  37. Info = Server Info Text
  38. # Comma separated list of IP addresses on which the server should
  39. # listen. Default values are:
  40. # "0.0.0.0" or (if compiled with IPv6 support) "::,0.0.0.0"
  41. # so the server listens on all IP addresses of the system by default.
  42. ;Listen = 127.0.0.1,192.168.0.1
  43. # Text file with the "message of the day" (MOTD). This message will
  44. # be shown to all users connecting to the server:
  45. ;MotdFile = :ETCDIR:/ngircd.motd
  46. # A simple Phrase (<256 chars) if you don't want to use a motd file.
  47. ;MotdPhrase = "Hello world!"
  48. # Global password for all users needed to connect to the server.
  49. # (Default: not set)
  50. ;Password = abc
  51. # This tells ngIRCd to write its current process ID to a file.
  52. # Note that the pidfile is written AFTER chroot and switching the
  53. # user ID, e.g. the directory the pidfile resides in must be
  54. # writable by the ngIRCd user and exist in the chroot directory.
  55. ;PidFile = /var/run/ngircd/ngircd.pid
  56. # Ports on which the server should listen. There may be more than
  57. # one port, separated with ",". (Default: 6667)
  58. ;Ports = 6667, 6668, 6669
  59. # Group ID under which the ngIRCd should run; you can use the name
  60. # of the group or the numerical ID. ATTENTION: For this to work the
  61. # server must have been started with root privileges!
  62. ;ServerGID = 65534
  63. # User ID under which the server should run; you can use the name
  64. # of the user or the numerical ID. ATTENTION: For this to work the
  65. # server must have been started with root privileges! In addition,
  66. # the configuration and MOTD files must be readable by this user,
  67. # otherwise RESTART and REHASH won't work!
  68. ;ServerUID = 65534
  69. [Limits]
  70. # Define some limits and timeouts for this ngIRCd instance. Default
  71. # values should be safe, but it is wise to double-check :-)
  72. # The server tries every <ConnectRetry> seconds to establish a link
  73. # to not yet (or no longer) connected servers.
  74. ;ConnectRetry = 60
  75. # Number of seconds after which the whole daemon should shutdown when
  76. # no connections are left active after handling at least one client
  77. # (0: never, which is the default).
  78. # This can be useful for testing or when ngIRCd is started using
  79. # "socket activation" with systemd(8), for example.
  80. ;IdleTimeout = 0
  81. # Maximum number of simultaneous in- and outbound connections the
  82. # server is allowed to accept (0: unlimited):
  83. ;MaxConnections = 0
  84. # Maximum number of simultaneous connections from a single IP address
  85. # the server will accept (0: unlimited):
  86. ;MaxConnectionsIP = 5
  87. # Maximum number of channels a user can be member of (0: no limit):
  88. ;MaxJoins = 10
  89. # Maximum length of an user nickname (Default: 9, as in RFC 2812).
  90. # Please note that all servers in an IRC network MUST use the same
  91. # maximum nickname length!
  92. ;MaxNickLength = 9
  93. # Maximum number of channels returned in response to a /list
  94. # command (0: unlimited):
  95. ;MaxListSize = 100
  96. # After <PingTimeout> seconds of inactivity the server will send a
  97. # PING to the peer to test whether it is alive or not.
  98. ;PingTimeout = 120
  99. # If a client fails to answer a PING with a PONG within <PongTimeout>
  100. # seconds, it will be disconnected by the server.
  101. ;PongTimeout = 20
  102. [Options]
  103. # Optional features and configuration options to further tweak the
  104. # behavior of ngIRCd. If you want to get started quickly, you most
  105. # probably don't have to make changes here -- they are all optional.
  106. # List of allowed channel types (channel prefixes) for newly created
  107. # channels on the local server. By default, all supported channel
  108. # types are allowed. Set this variable to the empty string to disallow
  109. # creation of new channels by local clients at all.
  110. ;AllowedChannelTypes = #&+
  111. # Are remote IRC operators allowed to control this server, e.g.
  112. # use commands like CONNECT, SQUIT, DIE, ...?
  113. ;AllowRemoteOper = no
  114. # A directory to chroot in when everything is initialized. It
  115. # doesn't need to be populated if ngIRCd is compiled as a static
  116. # binary. By default ngIRCd won't use the chroot() feature.
  117. # ATTENTION: For this to work the server must have been started
  118. # with root privileges!
  119. ;ChrootDir = /var/empty
  120. # Set this hostname for every client instead of the real one.
  121. # Use %x to add the hashed value of the original hostname.
  122. ;CloakHost = cloaked.host
  123. # Use this hostname for hostname cloaking on clients that have the
  124. # user mode "+x" set, instead of the name of the server.
  125. # Use %x to add the hashed value of the original hostname.
  126. ;CloakHostModeX = cloaked.user
  127. # The Salt for cloaked hostname hashing. When undefined a random
  128. # hash is generated after each server start.
  129. ;CloakHostSalt = abcdefghijklmnopqrstuvwxyz
  130. # Set every clients' user name to their nickname
  131. ;CloakUserToNick = yes
  132. # Try to connect to other IRC servers using IPv4 and IPv6, if possible.
  133. ;ConnectIPv6 = yes
  134. ;ConnectIPv4 = yes
  135. # Default user mode(s) to set on new local clients. Please note that
  136. # only modes can be set that the client could set on itself, you can't
  137. # set "a" (away) or "o" (IRC Op), for example! Default: none.
  138. ;DefaultUserModes = i
  139. # Do DNS lookups when a client connects to the server.
  140. ;DNS = yes
  141. # Do IDENT lookups if ngIRCd has been compiled with support for it.
  142. # Users identified using IDENT are registered without the "~" character
  143. # prepended to their user name.
  144. ;Ident = yes
  145. # Directory containing configuration snippets (*.conf), that should
  146. # be read in after parsing this configuration file.
  147. ;IncludeDir = :ETCDIR:/conf.d
  148. # Enhance user privacy slightly (useful for IRC server on TOR or I2P)
  149. # by censoring some information like idle time, logon time, etc.
  150. ;MorePrivacy = no
  151. # Normally ngIRCd doesn't send any messages to a client until it is
  152. # registered. Enable this option to let the daemon send "NOTICE AUTH"
  153. # messages to clients while connecting.
  154. ;NoticeAuth = no
  155. # Should IRC Operators be allowed to use the MODE command even if
  156. # they are not(!) channel-operators?
  157. ;OperCanUseMode = no
  158. # Should IRC Operators get AutoOp (+o) in persistent (+P) channels?
  159. ;OperChanPAutoOp = yes
  160. # Mask IRC Operator mode requests as if they were coming from the
  161. # server? (This is a compatibility hack for ircd-irc2 servers)
  162. ;OperServerMode = no
  163. # Use PAM if ngIRCd has been compiled with support for it.
  164. # Users identified using PAM are registered without the "~" character
  165. # prepended to their user name.
  166. ;PAM = yes
  167. # When PAM is enabled, all clients are required to be authenticated
  168. # using PAM; connecting to the server without successful PAM
  169. # authentication isn't possible.
  170. # If this option is set, clients not sending a password are still
  171. # allowed to connect: they won't become "identified" and keep the "~"
  172. # character prepended to their supplied user name.
  173. # Please note: To make some use of this behavior, it most probably
  174. # isn't useful to enable "Ident", "PAM" and "PAMIsOptional" at the
  175. # same time, because you wouldn't be able to distinguish between
  176. # Ident'ified and PAM-authenticated users: both don't have a "~"
  177. # character prepended to their respective user names!
  178. ;PAMIsOptional = no
  179. # Let ngIRCd send an "authentication PING" when a new client connects,
  180. # and register this client only after receiving the corresponding
  181. # "PONG" reply.
  182. ;RequireAuthPing = no
  183. # Silently drop all incoming CTCP requests.
  184. ;ScrubCTCP = no
  185. # Syslog "facility" to which ngIRCd should send log messages.
  186. # Possible values are system dependent, but most probably auth, daemon,
  187. # user and local1 through local7 are possible values; see syslog(3).
  188. # Default is "local5" for historical reasons, you probably want to
  189. # change this to "daemon", for example.
  190. ;SyslogFacility = local1
  191. # Password required for using the WEBIRC command used by some
  192. # Web-to-IRC gateways. If not set/empty, the WEBIRC command can't
  193. # be used. (Default: not set)
  194. ;WebircPassword = xyz
  195. ;[SSL]
  196. # SSL-related configuration options. Please note that this section
  197. # is only available when ngIRCd is compiled with support for SSL!
  198. # So don't forget to remove the ";" above if this is the case ...
  199. # SSL Server Key Certificate
  200. ;CertFile = :ETCDIR:/ssl/server-cert.pem
  201. # Select cipher suites allowed for SSL/TLS connections. This defaults
  202. # to HIGH:!aNULL:@STRENGTH (OpenSSL) or SECURE128 (GnuTLS).
  203. # See 'man 1ssl ciphers' (OpenSSL) or 'man 3 gnutls_priority_init'
  204. # (GnuTLS) for details.
  205. # For OpenSSL:
  206. ;CipherList = HIGH:!aNULL:@STRENGTH
  207. # For GnuTLS:
  208. ;CipherList = SECURE128
  209. # Diffie-Hellman parameters
  210. ;DHFile = :ETCDIR:/ssl/dhparams.pem
  211. # SSL Server Key
  212. ;KeyFile = :ETCDIR:/ssl/server-key.pem
  213. # password to decrypt SSLKeyFile (OpenSSL only)
  214. ;KeyFilePassword = secret
  215. # Additional Listen Ports that expect SSL/TLS encrypted connections
  216. ;Ports = 6697, 9999
  217. [Operator]
  218. # [Operator] sections are used to define IRC Operators. There may be
  219. # more than one [Operator] block, one for each local operator.
  220. # ID of the operator (may be different of the nickname)
  221. ;Name = TheOper
  222. # Password of the IRC operator
  223. ;Password = ThePwd
  224. # Optional Mask from which /OPER will be accepted
  225. ;Mask = *!ident@somewhere.example.com
  226. [Operator]
  227. # More [Operator] sections, if you like ...
  228. [Server]
  229. # Other servers are configured in [Server] sections. If you
  230. # configure a port for the connection, then this ngircd tries to
  231. # connect to to the other server on the given port; if not it waits
  232. # for the other server to connect.
  233. # There may be more than one server block, one for each server.
  234. #
  235. # Server Groups:
  236. # The ngIRCd allows "server groups": You can assign an "ID" to every
  237. # server with which you want this ngIRCd to link. If a server of a
  238. # group won't answer, the ngIRCd tries to connect to the next server
  239. # in the given group. But the ngircd never tries to connect to two
  240. # servers with the same group ID.
  241. # IRC name of the remote server, must match the "Name" variable in
  242. # the [Global] section of the other server (when using ngIRCd).
  243. ;Name = irc2.example.net
  244. # Internet host name or IP address of the peer (only required when
  245. # this server should establish the connection).
  246. ;Host = connect-to-host.example.net
  247. # IP address to use as _source_ address for the connection. if
  248. # unspecified, ngircd will let the operating system pick an address.
  249. ;Bind = 10.0.0.1
  250. # Port of the server to which the ngIRCd should connect. If you
  251. # assign no port the ngIRCd waits for incoming connections.
  252. ;Port = 6667
  253. # Own password for the connection. This password has to be configured
  254. # as "PeerPassword" on the other server.
  255. ;MyPassword = MySecret
  256. # Foreign password for this connection. This password has to be
  257. # configured as "MyPassword" on the other server.
  258. ;PeerPassword = PeerSecret
  259. # Group of this server (optional)
  260. ;Group = 123
  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. # Connect to the remote server using TLS/SSL (Default: false)
  268. ;SSLConnect = yes
  269. # Define a (case insensitive) list of masks matching nicknames that
  270. # should be treated as IRC services when introduced via this remote
  271. # server, separated by commas (",").
  272. # REGULAR SERVERS DON'T NEED this parameter, so leave it empty
  273. # (which is the default).
  274. # When you are connecting IRC services which mask as a IRC server
  275. # and which use "virtual users" to communicate with, for example
  276. # "NickServ" and "ChanServ", you should set this parameter to
  277. # something like "*Serv" or "NickServ,ChanServ,XyzServ".
  278. ;ServiceMask = *Serv,Global
  279. [Server]
  280. # More [Server] sections, if you like ...
  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. # Name of the channel
  289. ;Name = #TheName
  290. # Topic for this channel
  291. ;Topic = a great topic
  292. # Initial channel modes
  293. ;Modes = tnk
  294. # initial channel password (mode k)
  295. ;Key = Secret
  296. # Key file, syntax for each line: "<user>:<nick>:<key>".
  297. # Default: none.
  298. ;KeyFile = :ETCDIR:/#chan.key
  299. # maximum users per channel (mode l)
  300. ;MaxUsers = 23
  301. [Channel]
  302. # More [Channel] sections, if you like ...
  303. # -eof-