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 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. - ":6667"
  13. - "127.0.0.1:6668"
  14. - "[::1]:6668"
  15. - ":6697" # ssl port
  16. # websocket listening port
  17. ws-listen: ":8080"
  18. # tls listeners
  19. tls-listeners:
  20. # listener on ":6697"
  21. ":6697":
  22. key: tls.key
  23. cert: tls.crt
  24. # use ident protocol to get usernames
  25. check-ident: true
  26. # password to login to the server
  27. # generated using "oragono genpasswd"
  28. #password: ""
  29. # log level, one of error, warn, info, debug
  30. log: debug
  31. # motd filename
  32. # if you change the motd, you should move it to ircd.motd
  33. motd: oragono.motd
  34. # whether account authentication is enabled
  35. authentication-enabled: true
  36. # account/channel registration
  37. registration:
  38. # account registration
  39. accounts:
  40. # can users register new accounts?
  41. enabled: true
  42. # length of time a user has to verify their account before it can be re-registered
  43. # default is 120 hours, or 5 days
  44. verify-timeout: "120h"
  45. # callbacks to allow
  46. enabled-callbacks:
  47. - none # no verification needed, will instantly register successfully
  48. # ircd operators
  49. operator:
  50. # operator named 'dan'
  51. dan:
  52. # password to login with /OPER command
  53. # generated using "oragono genpasswd"
  54. password: JDJhJDA0JE1vZmwxZC9YTXBhZ3RWT2xBbkNwZnV3R2N6VFUwQUI0RUJRVXRBRHliZVVoa0VYMnlIaGsu
  55. # datastore configuration
  56. datastore:
  57. # path to the datastore
  58. path: ircd.db
  59. # limits - these need to be the same across the network
  60. limits:
  61. # nicklen is the max nick length allowed
  62. nicklen: 32
  63. # channellen is the max channel length allowed
  64. channellen: 64
  65. # awaylen is the maximum length of an away message
  66. awaylen: 200
  67. # kicklen is the maximum length of a kick message
  68. kicklen: 390
  69. # topiclen is the maximum length of a channel topic
  70. topiclen: 390
  71. # maximum number of monitor entries a client can have
  72. monitor-entries: 100
  73. # whowas entries to store
  74. whowas-entries: 100