You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

oragono.yaml 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  1. # oragono IRCd config
  2. # network configuration
  3. network:
  4. # name of the network
  5. name: OragonoTest
  6. # server configuration
  7. server:
  8. # server name
  9. name: oragono.test
  10. # addresses to listen on
  11. listen:
  12. - ":6697" # SSL/TLS port
  13. - ":6667" # plaintext port
  14. # To disable plaintext over the Internet, comment out :6667 and replace with:
  15. # - "127.0.0.1:6667" # (loopback ipv4, localhost-only)
  16. # - "[::1]:6667" # (loopback ipv6, localhost-only)
  17. # Unix domain socket for proxying:
  18. # - "/tmp/oragono_sock"
  19. # sets the permissions for Unix listen sockets. on a typical Linux system,
  20. # the default is 0775 or 0755, which prevents other users/groups from connecting
  21. # to the socket. With 0777, it behaves like a normal TCP socket
  22. # where anyone can connect.
  23. unix-bind-mode: 0777
  24. # tls listeners
  25. tls-listeners:
  26. # listener on ":6697"
  27. ":6697":
  28. key: tls.key
  29. cert: tls.crt
  30. # tor listeners: designate listeners for use by a tor hidden service / .onion address
  31. # WARNING: if you are running oragono as a pure hidden service, see the
  32. # anonymization / hardening recommendations in docs/MANUAL.md
  33. tor-listeners:
  34. # any connections that come in on these listeners will be considered
  35. # Tor connections. it is strongly recommended that these listeners *not*
  36. # be on public interfaces: they should be on 127.0.0.0/8 or unix domain
  37. listeners:
  38. # - "/tmp/oragono_tor_sock"
  39. # if this is true, connections from Tor must authenticate with SASL
  40. require-sasl: false
  41. # what hostname should be displayed for Tor connections?
  42. vhost: "tor-network.onion"
  43. # allow at most this many connections at once (0 for no limit):
  44. max-connections: 64
  45. # connection throttling (limit how many connection attempts are allowed at once):
  46. throttle-duration: 10m
  47. # set to 0 to disable throttling:
  48. max-connections-per-duration: 64
  49. # strict transport security, to get clients to automagically use TLS
  50. sts:
  51. # whether to advertise STS
  52. #
  53. # to stop advertising STS, leave this enabled and set 'duration' below to "0". this will
  54. # advertise to connecting users that the STS policy they have saved is no longer valid
  55. enabled: false
  56. # how long clients should be forced to use TLS for.
  57. # setting this to a too-long time will mean bad things if you later remove your TLS.
  58. # the default duration below is 1 month, 2 days and 5 minutes.
  59. duration: 1mo2d5m
  60. # tls port - you should be listening on this port above
  61. port: 6697
  62. # should clients include this STS policy when they ship their inbuilt preload lists?
  63. preload: false
  64. # use ident protocol to get usernames
  65. check-ident: false
  66. # password to login to the server
  67. # generated using "oragono genpasswd"
  68. #password: ""
  69. # motd filename
  70. # if you change the motd, you should move it to ircd.motd
  71. motd: oragono.motd
  72. # motd formatting codes
  73. # if this is true, the motd is escaped using formatting codes like $c, $b, and $i
  74. motd-formatting: true
  75. # addresses/CIDRs the PROXY command can be used from
  76. # this should be restricted to 127.0.0.1/8 and ::1/128 (unless you have a good reason)
  77. # you should also add these addresses to the connection limits and throttling exemption lists
  78. proxy-allowed-from:
  79. # - localhost
  80. # - "192.168.1.1"
  81. # - "192.168.10.1/24"
  82. # controls the use of the WEBIRC command (by IRC<->web interfaces, bouncers and similar)
  83. webirc:
  84. # one webirc block -- should correspond to one set of gateways
  85. -
  86. # tls fingerprint the gateway must connect with to use this webirc block
  87. fingerprint: 938dd33f4b76dcaf7ce5eb25c852369cb4b8fb47ba22fc235aa29c6623a5f182
  88. # password the gateway uses to connect, made with oragono genpasswd
  89. password: "$2a$04$sLEFDpIOyUp55e6gTMKbOeroT6tMXTjPFvA0eGvwvImVR9pkwv7ee"
  90. # addresses/CIDRs that can use this webirc command
  91. # you should also add these addresses to the connection limits and throttling exemption lists
  92. hosts:
  93. # - localhost
  94. # - "192.168.1.1"
  95. # - "192.168.10.1/24"
  96. # allow use of the RESUME extension over plaintext connections:
  97. # do not enable this unless the ircd is only accessible over internal networks
  98. allow-plaintext-resume: false
  99. # maximum length of clients' sendQ in bytes
  100. # this should be big enough to hold bursts of channel/direct messages
  101. max-sendq: 16k
  102. # compatibility with legacy clients
  103. compatibility:
  104. # many clients require that the final parameter of certain messages be an
  105. # RFC1459 trailing parameter, i.e., prefixed with :, whether or not this is
  106. # actually required. this forces Oragono to send those parameters
  107. # as trailings. this is recommended unless you're testing clients for conformance;
  108. # defaults to true when unset for that reason.
  109. force-trailing: true
  110. # some clients (ZNC 1.6.x and lower, Pidgin 2.12 and lower) do not
  111. # respond correctly to SASL messages with the server name as a prefix:
  112. # https://github.com/znc/znc/issues/1212
  113. # this works around that bug, allowing them to use SASL.
  114. send-unprefixed-sasl: true
  115. # maximum number of connections per subnet
  116. connection-limits:
  117. # whether to enforce connection limits or not
  118. enabled: true
  119. # how wide the cidr should be for IPv4
  120. cidr-len-ipv4: 32
  121. # how wide the cidr should be for IPv6
  122. cidr-len-ipv6: 64
  123. # maximum concurrent connections per subnet (defined above by the cidr length)
  124. connections-per-subnet: 16
  125. # IPs/networks which are exempted from connection limits
  126. exempted:
  127. - "localhost"
  128. # - "192.168.1.1"
  129. # - "2001:0db8::/32"
  130. # automated connection throttling
  131. connection-throttling:
  132. # whether to throttle connections or not
  133. enabled: true
  134. # how wide the cidr should be for IPv4
  135. cidr-len-ipv4: 32
  136. # how wide the cidr should be for IPv6
  137. cidr-len-ipv6: 64
  138. # how long to keep track of connections for
  139. duration: 10m
  140. # maximum number of connections, per subnet, within the given duration
  141. max-connections: 32
  142. # how long to ban offenders for, and the message to use
  143. # after banning them, the number of connections is reset (which lets you use UNDLINE to unban people)
  144. ban-duration: 10m
  145. ban-message: You have attempted to connect too many times within a short duration. Wait a while, and you will be able to connect.
  146. # IPs/networks which are exempted from connection limits
  147. exempted:
  148. - "localhost"
  149. # - "192.168.1.1"
  150. # - "2001:0db8::/32"
  151. # IP cloaking hides users' IP addresses from other users and from channel admins
  152. # (but not from server admins), while still allowing channel admins to ban
  153. # offending IP addresses or networks. In place of hostnames derived from reverse
  154. # DNS, users see fake domain names like pwbs2ui4377257x8.oragono. These names are
  155. # generated deterministically from the underlying IP address, but if the underlying
  156. # IP is not already known, it is infeasible to recover it from the cloaked name.
  157. ip-cloaking:
  158. # whether to enable IP cloaking
  159. enabled: false
  160. # fake TLD at the end of the hostname, e.g., pwbs2ui4377257x8.oragono
  161. netname: "oragono"
  162. # secret key to prevent dictionary attacks against cloaked IPs
  163. # any high-entropy secret is valid for this purpose:
  164. # you MUST generate a new one for your installation.
  165. # suggestion: use the output of `oragono mksecret`
  166. # note that rotating this key will invalidate all existing ban masks.
  167. secret: "siaELnk6Kaeo65K3RCrwJjlWaZ-Bt3WuZ2L8MXLbNb4"
  168. # the cloaked hostname is derived only from the CIDR (most significant bits
  169. # of the IP address), up to a configurable number of bits. this is the
  170. # granularity at which bans will take effect for ipv4 (a /32 is a fully
  171. # specified IP address). note that changing this value will invalidate
  172. # any stored bans.
  173. cidr-len-ipv4: 32
  174. # analogous value for ipv6 (an ipv6 /64 is the typical prefix assigned
  175. # by an ISP to an individual customer for their LAN)
  176. cidr-len-ipv6: 64
  177. # number of bits of hash output to include in the cloaked hostname.
  178. # more bits means less likelihood of distinct IPs colliding,
  179. # at the cost of a longer cloaked hostname. if this value is set to 0,
  180. # all users will receive simply `netname` as their cloaked hostname.
  181. num-bits: 80
  182. # account options
  183. accounts:
  184. # account registration
  185. registration:
  186. # can users register new accounts?
  187. enabled: true
  188. # this is the bcrypt cost we'll use for account passwords
  189. bcrypt-cost: 12
  190. # length of time a user has to verify their account before it can be re-registered
  191. verify-timeout: "32h"
  192. # callbacks to allow
  193. enabled-callbacks:
  194. - none # no verification needed, will instantly register successfully
  195. # example configuration for sending verification emails via a local mail relay
  196. # callbacks:
  197. # mailto:
  198. # server: localhost
  199. # port: 25
  200. # tls:
  201. # enabled: false
  202. # username: ""
  203. # password: ""
  204. # sender: "admin@my.network"
  205. # is account authentication enabled?
  206. authentication-enabled: true
  207. # throttle account login attempts (to prevent either password guessing, or DoS
  208. # attacks on the server aimed at forcing repeated expensive bcrypt computations)
  209. login-throttling:
  210. enabled: true
  211. # window
  212. duration: 1m
  213. # number of attempts allowed within the window
  214. max-attempts: 3
  215. # some clients (notably Pidgin and Hexchat) offer only a single password field,
  216. # which makes it impossible to specify a separate server password (for the PASS
  217. # command) and SASL password. if this option is set to true, a client that
  218. # successfully authenticates with SASL will not be required to send
  219. # PASS as well, so it can be configured to authenticate with SASL only.
  220. skip-server-password: false
  221. # require-sasl controls whether clients are required to have accounts
  222. # (and sign into them using SASL) to connect to the server
  223. require-sasl:
  224. # if this is enabled, all clients must authenticate with SASL while connecting
  225. enabled: false
  226. # IPs/CIDRs which are exempted from the account requirement
  227. exempted:
  228. - "localhost"
  229. # - '10.10.0.0/16'
  230. # nick-reservation controls how, and whether, nicknames are linked to accounts
  231. nick-reservation:
  232. # is there any enforcement of reserved nicknames?
  233. enabled: false
  234. # how many nicknames, in addition to the account name, can be reserved?
  235. additional-nick-limit: 2
  236. # method describes how nickname reservation is handled
  237. # already logged-in using SASL or NickServ
  238. # timeout: let the user change to the registered nickname, give them X seconds
  239. # to login and then rename them if they haven't done so
  240. # strict: don't let the user change to the registered nickname unless they're
  241. # already logged-in using SASL or NickServ
  242. # optional: no enforcement by default, but allow users to opt in to
  243. # the enforcement level of their choice
  244. method: strict
  245. # allow users to set their own nickname enforcement status, e.g.,
  246. # to opt in to strict enforcement
  247. allow-custom-enforcement: true
  248. # rename-timeout - this is how long users have 'til they're renamed
  249. rename-timeout: 30s
  250. # rename-prefix - this is the prefix to use when renaming clients (e.g. Guest-AB54U31)
  251. rename-prefix: Guest-
  252. # bouncer controls whether oragono can act as a bouncer, i.e., allowing
  253. # multiple connections to attach to the same client/nickname identity
  254. bouncer:
  255. # when disabled, each connection must use a separate nickname (as is the
  256. # typical behavior of IRC servers). when enabled, a new connection that
  257. # has authenticated with SASL can associate itself with an existing
  258. # client
  259. enabled: true
  260. # clients can opt in to bouncer functionality using the cap system, or
  261. # via nickserv. if this is enabled, then they have to opt out instead
  262. allowed-by-default: false
  263. # vhosts controls the assignment of vhosts (strings displayed in place of the user's
  264. # hostname/IP) by the HostServ service
  265. vhosts:
  266. # are vhosts enabled at all?
  267. enabled: true
  268. # maximum length of a vhost
  269. max-length: 64
  270. # regexp for testing the validity of a vhost
  271. # (make sure any changes you make here are RFC-compliant)
  272. valid-regexp: '^[0-9A-Za-z.\-_/]+$'
  273. # options controlling users requesting vhosts:
  274. user-requests:
  275. # can users request vhosts at all? if this is false, operators with the
  276. # 'vhosts' capability can still assign vhosts manually
  277. enabled: false
  278. # if uncommented, all new vhost requests will be dumped into the given
  279. # channel, so opers can review them as they are sent in. ensure that you
  280. # have registered and restricted the channel appropriately before you
  281. # uncomment this.
  282. #channel: "#vhosts"
  283. # after a user's vhost has been approved or rejected, they need to wait
  284. # this long (starting from the time of their original request)
  285. # before they can request a new one.
  286. cooldown: 168h
  287. # channel options
  288. channels:
  289. # modes that are set when new channels are created
  290. # +n is no-external-messages and +t is op-only-topic
  291. # see /QUOTE HELP cmodes for more channel modes
  292. default-modes: +nt
  293. # how many channels can a client be in at once?
  294. max-channels-per-client: 100
  295. # if this is true, new channels can only be created by operators with the
  296. # `chanreg` operator capability
  297. operator-only-creation: false
  298. # channel registration - requires an account
  299. registration:
  300. # can users register new channels?
  301. enabled: true
  302. # how many channels can each account register?
  303. max-channels-per-account: 15
  304. # operator classes
  305. oper-classes:
  306. # local operator
  307. "local-oper":
  308. # title shown in WHOIS
  309. title: Local Operator
  310. # capability names
  311. capabilities:
  312. - "oper:local_kill"
  313. - "oper:local_ban"
  314. - "oper:local_unban"
  315. - "nofakelag"
  316. # network operator
  317. "network-oper":
  318. # title shown in WHOIS
  319. title: Network Operator
  320. # oper class this extends from
  321. extends: "local-oper"
  322. # capability names
  323. capabilities:
  324. - "oper:remote_kill"
  325. - "oper:remote_ban"
  326. - "oper:remote_unban"
  327. # server admin
  328. "server-admin":
  329. # title shown in WHOIS
  330. title: Server Admin
  331. # oper class this extends from
  332. extends: "local-oper"
  333. # capability names
  334. capabilities:
  335. - "oper:rehash"
  336. - "oper:die"
  337. - "accreg"
  338. - "sajoin"
  339. - "samode"
  340. - "vhosts"
  341. - "chanreg"
  342. # ircd operators
  343. opers:
  344. # operator named 'dan'
  345. dan:
  346. # which capabilities this oper has access to
  347. class: "server-admin"
  348. # custom whois line
  349. whois-line: is a cool dude
  350. # custom hostname
  351. vhost: "n"
  352. # modes are the modes to auto-set upon opering-up
  353. modes: +is acjknoqtux
  354. # password to login with /OPER command
  355. # generated using "oragono genpasswd"
  356. password: "$2a$04$LiytCxaY0lI.guDj2pBN4eLRD5cdM2OLDwqmGAgB6M2OPirbF5Jcu"
  357. # logging, takes inspiration from Insp
  358. logging:
  359. -
  360. # how to log these messages
  361. #
  362. # file log to given target filename
  363. # stdout log to stdout
  364. # stderr log to stderr
  365. # (you can specify multiple methods, e.g., to log to both stderr and a file)
  366. method: stderr
  367. # filename to log to, if file method is selected
  368. # filename: ircd.log
  369. # type(s) of logs to keep here. you can use - to exclude those types
  370. #
  371. # exclusions take precedent over inclusions, so if you exclude a type it will NEVER
  372. # be logged, even if you explicitly include it
  373. #
  374. # useful types include:
  375. # * everything (usually used with exclusing some types below)
  376. # server server startup, rehash, and shutdown events
  377. # accounts account registration and authentication
  378. # channels channel creation and operations
  379. # commands command calling and operations
  380. # opers oper actions, authentication, etc
  381. # services actions related to NickServ, ChanServ, etc.
  382. # internal unexpected runtime behavior, including potential bugs
  383. # userinput raw lines sent by users
  384. # useroutput raw lines sent to users
  385. type: "* -userinput -useroutput"
  386. # one of: debug info warn error
  387. level: info
  388. #-
  389. # # example of a file log that avoids logging IP addresses
  390. # method: file
  391. # filename: ircd.log
  392. # type: "* -userinput -useroutput -localconnect -localconnect-ip"
  393. # level: debug
  394. # debug options
  395. debug:
  396. # when enabled, oragono will attempt to recover from certain kinds of
  397. # client-triggered runtime errors that would normally crash the server.
  398. # this makes the server more resilient to DoS, but could result in incorrect
  399. # behavior. deployments that would prefer to "start from scratch", e.g., by
  400. # letting the process crash and auto-restarting it with systemd, can set
  401. # this to false.
  402. recover-from-errors: true
  403. # optionally expose a pprof http endpoint: https://golang.org/pkg/net/http/pprof/
  404. # it is strongly recommended that you don't expose this on a public interface;
  405. # if you need to access it remotely, you can use an SSH tunnel.
  406. # set to `null`, "", leave blank, or omit to disable
  407. # pprof-listener: "localhost:6060"
  408. # datastore configuration
  409. datastore:
  410. # path to the datastore
  411. path: ircd.db
  412. # if the database schema requires an upgrade, `autoupgrade` will attempt to
  413. # perform it automatically on startup. the database will be backed
  414. # up, and if the upgrade fails, the original database will be restored.
  415. autoupgrade: true
  416. # languages config
  417. languages:
  418. # whether to load languages
  419. enabled: true
  420. # default language to use for new clients
  421. # 'en' is the default English language in the code
  422. default: en
  423. # which directory contains our language files
  424. path: languages
  425. # limits - these need to be the same across the network
  426. limits:
  427. # nicklen is the max nick length allowed
  428. nicklen: 32
  429. # identlen is the max ident length allowed
  430. identlen: 20
  431. # channellen is the max channel length allowed
  432. channellen: 64
  433. # awaylen is the maximum length of an away message
  434. awaylen: 500
  435. # kicklen is the maximum length of a kick message
  436. kicklen: 1000
  437. # topiclen is the maximum length of a channel topic
  438. topiclen: 1000
  439. # maximum number of monitor entries a client can have
  440. monitor-entries: 100
  441. # whowas entries to store
  442. whowas-entries: 100
  443. # maximum length of channel lists (beI modes)
  444. chan-list-modes: 60
  445. # maximum length of IRC lines
  446. # this should generally be 1024-2048, and will only apply when negotiated by clients
  447. linelen:
  448. # ratified version of the message-tags cap fixes the max tag length at 8191 bytes
  449. # configurable length for the rest of the message:
  450. rest: 2048
  451. # maximum number of messages to accept during registration (prevents
  452. # DoS / resource exhaustion attacks):
  453. registration-messages: 1024
  454. # fakelag: prevents clients from spamming commands too rapidly
  455. fakelag:
  456. # whether to enforce fakelag
  457. enabled: true
  458. # time unit for counting command rates
  459. window: 1s
  460. # clients can send this many commands without fakelag being imposed
  461. burst-limit: 5
  462. # once clients have exceeded their burst allowance, they can send only
  463. # this many commands per `window`:
  464. messages-per-window: 2
  465. # client status resets to the default state if they go this long without
  466. # sending any commands:
  467. cooldown: 2s
  468. # message history tracking, for the RESUME extension and possibly other uses in future
  469. history:
  470. # should we store messages for later playback?
  471. # the current implementation stores messages in RAM only; they do not persist
  472. # across server restarts. however, you should not enable this unless you understand
  473. # how it interacts with the GDPR and/or any data privacy laws that apply
  474. # in your country and the countries of your users.
  475. enabled: false
  476. # how many channel-specific events (messages, joins, parts) should be tracked per channel?
  477. channel-length: 256
  478. # how many direct messages and notices should be tracked per user?
  479. client-length: 64
  480. # number of messages to automatically play back on channel join (0 to disable):
  481. autoreplay-on-join: 0
  482. # maximum number of CHATHISTORY messages that can be
  483. # requested at once (0 disables support for CHATHISTORY)
  484. chathistory-maxmessages: 100