Advertisement
Rikairchy

IRCd example distributed config

Jul 12th, 2014
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.88 KB | None | 0 0
  1. <server
  2.  name="server1.example.net"
  3.  description="example.net server in $LOCATION"
  4.  id="21Z"
  5.  network="EXAMPLE"
  6. >
  7. <admin
  8.  name="User Name"
  9.  nick="Nickname"
  10.  email="example@example.net"
  11. >
  12. # pull global config
  13. <include
  14.  executable="/usr/bin/wget -O - -q https://website.tld/configs/global.conf"
  15. >
  16.  
  17. <bind
  18.  address=""
  19.  port="7005"
  20.  type="servers"
  21. >
  22. <bind
  23.  address=""
  24.  port="7010"
  25.  type="servers"
  26.  ssl="gnutls"
  27. >
  28. <bind
  29.  address=""
  30.  port="6697,7000"
  31.  ssl="gnutls"
  32. >
  33. <bind
  34.  address=""
  35.  port="6660-6669"
  36. >
  37. <power
  38.  diepass="dieinhellfire"
  39.  restartpass="itlives"
  40. >
  41. ## pull down global rules/motd
  42. <execfiles
  43.  rules="wget -O - -q https:/website.tld/configs/rules"
  44.  motd="wget -O - -q https:/website.tld/configs/motd"
  45. >
  46. <include
  47.  file="conf/helpop.conf"
  48. >
  49. <autoconnect
  50.  period="20"
  51.  server="server2.example.net server3.example.net"
  52. >
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement