sample-ngircd.conf.tmpl 13 KB

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