ngircd.conf 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  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. # The original can be found at:
  19. # /usr/share/doc/ngircd/examples/sample-ngircd.conf.gz
  20. [Global]
  21. # The [Global] section of this file is used to define the main
  22. # configuration of the server, like the server name and the ports
  23. # on which the server should be listening.
  24. # These settings depend on your personal preferences, so you should
  25. # make sure that they correspond to your installation and setup!
  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. # Information about the server and the administrator, used by the
  30. # ADMIN command. Not required by server but by RFC!
  31. AdminInfo1 = Debian User
  32. AdminInfo2 = Debian City
  33. AdminEMail = irc@irc.example.com
  34. # Info text of the server. This will be shown by WHOIS and
  35. # LINKS requests for example.
  36. Info = Yet another IRC Server running on Debian GNU/Linux
  37. # Comma separated list of IP addresses on which the server should
  38. # listen. Default values are:
  39. # "0.0.0.0" or (if compiled with IPv6 support) "::,0.0.0.0"
  40. # so the server listens on all IP addresses of the system by default.
  41. ;Listen = 127.0.0.1,192.168.0.1
  42. # Text file with the "message of the day" (MOTD). This message will
  43. # be shown to all users connecting to the server:
  44. MotdFile = /etc/ngircd/ngircd.motd
  45. # A simple Phrase (<256 chars) if you don't want to use a motd file.
  46. ;MotdPhrase = "Hello. This is the Debian default MOTD sentence"
  47. # Global password for all users needed to connect to the server.
  48. # (Default: not set)
  49. ;Password = wealllikedebian
  50. # This tells ngIRCd to write its current process ID to a file.
  51. # Note that the pidfile is written AFTER chroot and switching the
  52. # user ID, e.g. the directory the pidfile resides in must be
  53. # writeable by the ngIRCd user and exist in the chroot directory.
  54. # Keep this setting in sync with PIDFILE in /etc/init.d/ngircd
  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. # Keep this setting in sync with DAEMONUSER in /etc/init.d/ngircd
  63. ServerGID = irc
  64. # User ID under which the server should run; you can use the name
  65. # of the user or the numerical ID. ATTENTION: For this to work the
  66. # server must have been started with root privileges! In addition,
  67. # the configuration and MOTD files must be readable by this user,
  68. # otherwise RESTART and REHASH won't work!
  69. # Keep this setting in sync with DAEMONUSER in /etc/init.d/ngircd
  70. ServerUID = irc
  71. [Limits]
  72. # Define some limits and timeouts for this ngIRCd instance. Default
  73. # values should be safe, but it is wise to double-check :-)
  74. # The server tries every <ConnectRetry> seconds to establish a link
  75. # to not yet (or no longer) connected servers.
  76. ConnectRetry = 60
  77. # Maximum number of simultaneous in- and outbound connections the
  78. # server is allowed to accept (0: unlimited):
  79. MaxConnections = 500
  80. # Maximum number of simultaneous connections from a single IP address
  81. # the server will accept (0: unlimited):
  82. MaxConnectionsIP = 10
  83. # Maximum number of channels a user can be member of (0: no limit):
  84. MaxJoins = 10
  85. # Maximum length of an user nick name (Default: 9, as in RFC 2812).
  86. # Please note that all servers in an IRC network MUST use the same
  87. # maximum nick name length!
  88. ;MaxNickLength = 9
  89. # After <PingTimeout> seconds of inactivity the server will send a
  90. # PING to the peer to test whether it is alive or not.
  91. PingTimeout = 120
  92. # If a client fails to answer a PING with a PONG within <PongTimeout>
  93. # seconds, it will be disconnected by the server.
  94. PongTimeout = 20
  95. [Options]
  96. # Optional features and configuration options to further tweak the
  97. # behavior of ngIRCd. If you want to get started quickly, you most
  98. # probably don't have to make changes here -- they are all optional.
  99. # Are remote IRC operators allowed to control this server, e.g.
  100. # use commands like CONNECT, SQUIT, DIE, ...?
  101. ;AllowRemoteOper = no
  102. # A directory to chroot in when everything is initialized. It
  103. # doesn't need to be populated if ngIRCd is compiled as a static
  104. # binary. By default ngIRCd won't use the chroot() feature.
  105. # ATTENTION: For this to work the server must have been started
  106. # with root privileges!
  107. ;ChrootDir = /var/empty
  108. # Set this hostname for every client instead of the real one.
  109. # Please note: don't use the percentage sign ("%"), it is reserved for
  110. # future extensions!
  111. ;CloakHost = irc.example.net
  112. # Set every clients' user name to their nick name
  113. ;CloakUserToNick = yes
  114. # Try to connect to other irc servers using ipv4 and ipv6, if possible
  115. ;ConnectIPv6 = yes
  116. ;ConnectIPv4 = yes
  117. # Don do any DNS lookups when a client connects to the server.
  118. ;DNS = yes
  119. # Do IDENT lookups, if ngIRCd has been compiled with support for it.
  120. ;Ident = yes
  121. # Enhance user privacy slightly (useful for IRC server on TOR or I2P)
  122. # by censoring some information like idle time, logon time, etc.
  123. ;MorePrivacy = no
  124. # Normally ngIRCd doesn't send any messages to a client until it is
  125. # registered. Enable this option to let the daemon send "NOTICE AUTH"
  126. # messages to clients while connecting.
  127. ;NoticeAuth = no
  128. # Should IRC Operators be allowed to use the MODE command even if
  129. # they are not(!) channel-operators?
  130. OperCanUseMode = yes
  131. # Mask IRC Operator mode requests as if they were coming from the
  132. # server? (This is a compatibility hack for ircd-irc2 servers)
  133. ;OperServerMode = no
  134. # Use PAM if ngIRCd has been compiled with support for it.
  135. PAM = no
  136. # Allow Pre-Defined Channels only (see Section [Channels])
  137. ;PredefChannelsOnly = no
  138. # Let ngIRCd send an "authentication PING" when a new client connects,
  139. # and register this client only after receiving the corresponding
  140. # "PONG" reply.
  141. ;RequireAuthPing = no
  142. # Silently drop all incoming CTCP requests.
  143. ;ScrubCTCP = no
  144. # Syslog "facility" to which ngIRCd should send log messages.
  145. # Possible values are system dependent, but most probably auth, daemon,
  146. # user and local1 through local7 are possible values; see syslog(3).
  147. # Default is "local5" for historical reasons, you probably want to
  148. # change this to "daemon", for example.
  149. SyslogFacility = local1
  150. # Password required for using the WEBIRC command used by some
  151. # Web-to-IRC gateways. If not set/empty, the WEBIRC command can't
  152. # be used. (Default: not set)
  153. ;WebircPassword = xyz
  154. ;[SSL]
  155. # SSL-related configuration options. Please note that this section
  156. # is only available when ngIRCd is compiled with support for SSL!
  157. # So don't forget to remove the ";" above if this is the case ...
  158. # SSL Server Key Certificate
  159. ;CertFile = /etc/ssl/certs/server.crt
  160. # Diffie-Hellman parameters
  161. ;DHFile = /etc/ngircd/dhparams.pem
  162. # SSL Server Key
  163. ;KeyFile = /etc/ssl/private/server.key
  164. # password to decrypt SSLKeyFile (OpenSSL only)
  165. # Note that this Debian package was linked against GnuTLS so this
  166. # option has no effect.
  167. ;KeyFilePassword = secret
  168. # Additional Listen Ports that expect SSL/TLS encrypted connections
  169. ;Ports = 6697, 9999
  170. [Operator]
  171. # [Operator] sections are used to define IRC Operators. There may be
  172. # more than one [Operator] block, one for each local operator.
  173. # ID of the operator (may be different of the nick name)
  174. ;Name = TheOper
  175. # Password of the IRC operator
  176. ;Password = ThePwd
  177. # Optional Mask from which /OPER will be accepted
  178. ;Mask = *!ident@somewhere.example.com
  179. [Operator]
  180. # More [Operator] sections, if you like ...
  181. [Server]
  182. # Other servers are configured in [Server] sections. If you
  183. # configure a port for the connection, then this ngircd tries to
  184. # connect to to the other server on the given port; if not it waits
  185. # for the other server to connect.
  186. # There may be more than one server block, one for each server.
  187. #
  188. # Server Groups:
  189. # The ngIRCd allows "server groups": You can assign an "ID" to every
  190. # server with which you want this ngIRCd to link. If a server of a
  191. # group won't answer, the ngIRCd tries to connect to the next server
  192. # in the given group. But the ngircd never tries to connect to two
  193. # servers with the same group ID.
  194. # IRC name of the remote server, must match the "Name" variable in
  195. # the [Global] section of the other server (when using ngIRCd).
  196. ;Name = irc2.example.net
  197. # Internet host name or IP address of the peer (only required when
  198. # this server should establish the connection).
  199. ;Host = connect-to-host.example.net
  200. # IP address to use as _source_ address for the connection. if
  201. # unspecified, ngircd will let the operating system pick an address.
  202. ;Bind = 10.0.0.1
  203. # Port of the server to which the ngIRCd should connect. If you
  204. # assign no port the ngIRCd waits for incoming connections.
  205. ;Port = 6667
  206. # Own password for the connection. This password has to be configured
  207. # as "PeerPassword" on the other server.
  208. ;MyPassword = MySecret
  209. # Foreign password for this connection. This password has to be
  210. # configured as "MyPassword" on the other server.
  211. ;PeerPassword = PeerSecret
  212. # Group of this server (optional)
  213. ;Group = 123
  214. # Set the "Passive" option to "yes" if you don't want this ngIRCd to
  215. # connect to the configured peer (same as leaving the "Port" variable
  216. # empty). The advantage of this option is that you can actually
  217. # configure a port an use the IRC command CONNECT more easily to
  218. # manually connect this specific server later.
  219. ;Passive = no
  220. # Connect to the remote server using TLS/SSL (Default: false)
  221. ;SSLConnect = yes
  222. # Define a (case insensitive) mask matching nick names that should be
  223. # treated as IRC services when introduced via this remote server.
  224. # REGULAR SERVERS DON'T NEED this parameter, so leave it empty
  225. # (which is the default).
  226. # When you are connecting IRC services which mask as a IRC server
  227. # and which use "virtual users" to communicate with, for example
  228. # "NickServ" and "ChanServ", you should set this parameter to
  229. # something like "*Serv".
  230. ;ServiceMask = *Serv
  231. [Server]
  232. # More [Server] sections, if you like ...
  233. [Channel]
  234. # Pre-defined channels can be configured in [Channel] sections.
  235. # Such channels are created by the server when starting up and even
  236. # persist when there are no more members left.
  237. # Persistent channels are marked with the mode 'P', which can be set
  238. # and unset by IRC operators like other modes on the fly.
  239. # There may be more than one [Channel] block, one for each channel.
  240. # Name of the channel
  241. ;Name = #ngircd
  242. # Topic for this channel
  243. ;Topic = Our ngircd testing channel
  244. # Initial channel modes
  245. ;Modes = tnk
  246. # initial channel password (mode k)
  247. ;Key = Secret
  248. # Key file, syntax for each line: "<user>:<nick>:<key>".
  249. # Default: none.
  250. ;KeyFile = /etc/ngircd/#chan.key
  251. # maximum users per channel (mode l)
  252. ;MaxUsers = 23
  253. [Channel]
  254. # More [Channel] sections, if you like ...
  255. # -eof-