unrealircd

- supernets unrealircd source & configuration
git clone git://git.acid.vegas/unrealircd.git
Log | Files | Refs | Archive | README | LICENSE

unrealircd.link.conf (1071B)

      1 include "https://USERNAME:PASSWORD@hub.supernets.org:PORT/badwords.conf";
      2 include "https://USERNAME:PASSWORD@hub.supernets.org:PORT/except.conf";
      3 include "https://USERNAME:PASSWORD@hub.supernets.org:PORT/ircd.conf";
      4 include "https://USERNAME:PASSWORD@hub.supernets.org:PORT/modules.conf";
      5 include "https://USERNAME:PASSWORD@hub.supernets.org:PORT/opers.conf";
      6 include "https://USERNAME:PASSWORD@hub.supernets.org:PORT/snomasks.conf";
      7 include "https://USERNAME:PASSWORD@hub.supernets.org:PORT/spamfilter.conf";
      8 
      9 me { name "example.supernets.org"; info "SuperNETS IRC Network"; sid XXX; }
     10 
     11 listen {
     12 	ip *;
     13 	port 6697;
     14 	options { clientsonly; tls; }
     15 	tls-options {
     16 		certificate "tls/irc.crt";
     17 		key         "tls/irc.key";
     18 	}
     19 }
     20 listen {
     21 	ip *;
     22 	port 9000;
     23 	options { clientsonly; tls; }
     24 	tls-options {
     25 		certificate "tls/irc.crt";
     26 		key         "tls/irc.key";
     27 	}
     28 }
     29 
     30 listen {        
     31 	file "/etc/tor/unrealircd/tor_ircd.socket";
     32 	mode 0777;
     33 	spoof-ip 127.0.0.2;
     34 }
     35 listen {
     36 	file "/etc/tor/unrealircd/tor_tls_ircd.socket";
     37 	mode 0777;
     38 	spoof-ip 127.0.0.2;
     39 	options { tls; }
     40 }