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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. # database filename (sqlite db)
  11. database: ircd.db
  12. # addresses to listen on
  13. listen:
  14. - ":6667"
  15. - "127.0.0.1:6668"
  16. - "[::1]:6668"
  17. - ":6697" # ssl port
  18. # websocket listening port
  19. ws-listen: ":8080"
  20. # tls listeners
  21. tls-listeners:
  22. # listener on ":6697"
  23. ":6697":
  24. key: tls.key
  25. cert: tls.crt
  26. # use ident protocol to get usernames
  27. check-ident: true
  28. # password to login to the server
  29. # generated using "oragono genpasswd"
  30. #password: ""
  31. # log level, one of error, warn, info, debug
  32. log: debug
  33. # motd filename
  34. # if you change the motd, you should move it to ircd.motd
  35. motd: oragono.motd
  36. # addresses/hostnames the PROXY command can be used from
  37. proxy-allowed-from:
  38. - "localhost"
  39. - "127.0.0.1"
  40. # ircd operators
  41. operator:
  42. # operator named 'dan'
  43. dan:
  44. # password to login with /OPER command
  45. # generated using "oragono genpasswd"
  46. password: JDJhJDA0JE1vZmwxZC9YTXBhZ3RWT2xBbkNwZnV3R2N6VFUwQUI0RUJRVXRBRHliZVVoa0VYMnlIaGsu
  47. # limits - these need to be the same across the network
  48. limits:
  49. # nicklen is the max nick length allowed
  50. nicklen: 32
  51. # channellen is the max channel length allowed
  52. channellen: 64