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.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. # account/channel registration
  35. registration:
  36. # account registration
  37. accounts:
  38. # can users register new accounts?
  39. enabled: true
  40. # length of time a user has to verify their account before it can be re-registered
  41. # default is 120 hours, or 5 days
  42. verify-timeout: "120h"
  43. # callbacks to allow
  44. enabled-callbacks:
  45. - none # no verification needed, will instantly register successfully
  46. # ircd operators
  47. operator:
  48. # operator named 'dan'
  49. dan:
  50. # password to login with /OPER command
  51. # generated using "oragono genpasswd"
  52. password: JDJhJDA0JE1vZmwxZC9YTXBhZ3RWT2xBbkNwZnV3R2N6VFUwQUI0RUJRVXRBRHliZVVoa0VYMnlIaGsu
  53. # datastore configuration
  54. datastore:
  55. # path to the datastore
  56. path: ircd.db
  57. # limits - these need to be the same across the network
  58. limits:
  59. # nicklen is the max nick length allowed
  60. nicklen: 32
  61. # channellen is the max channel length allowed
  62. channellen: 64
  63. # awaylen is the maximum length of an away message
  64. awaylen: 200
  65. # kicklen is the maximum length of a kick message
  66. kicklen: 390
  67. # topiclen is the maximum length of a channel topic
  68. topiclen: 390
  69. # maximum number of monitor entries a client can have
  70. monitor-entries: 100
  71. # whowas entries to store
  72. whowas-entries: 100