diff options
-rw-r--r-- | docs/conf/inspircd.conf.example | 8 | ||||
-rw-r--r-- | docs/conf/providers/irccloud.conf.example | 12 | ||||
-rw-r--r-- | docs/conf/providers/kiwiirc-com.conf.example | 8 |
3 files changed, 27 insertions, 1 deletions
diff --git a/docs/conf/inspircd.conf.example b/docs/conf/inspircd.conf.example index 832c30b39..7e9bf1a5f 100644 --- a/docs/conf/inspircd.conf.example +++ b/docs/conf/inspircd.conf.example @@ -246,6 +246,12 @@ # you will probably need a connect block just for user registration. # # This can be done by using <connect registered="no"> # +# To enable IRCCloud on your network uncomment this: +#<include file="examples/providers/irccloud.conf.example"> + +# To enable KiwiIRC.com on your network uncomment this: +#<include file="examples/services/kiwiirc-com.conf.example"> + # A connect class with <connect:deny> set denies connections from the specified host/IP range. <connect # deny: Will not let people connect if they have specified host/IP. @@ -254,7 +260,7 @@ # reason: The message that users will see if they match a deny block. reason="The 6bone address space is deprecated"> -# A connect class with <connect:allow> set allows connections from the specified host/IP range. +# A connect class with <connect:allow> set allows c from the specified host/IP range. <connect # name: Name to use for this connect block. Mainly used for # connect class inheriting. diff --git a/docs/conf/providers/irccloud.conf.example b/docs/conf/providers/irccloud.conf.example new file mode 100644 index 000000000..bf57e3fdb --- /dev/null +++ b/docs/conf/providers/irccloud.conf.example @@ -0,0 +1,12 @@ +# This file contains connect classes which are used by IRCCloud users. +# See https://www.irccloud.com for more information on IRCCloud. + +<connect name="IRCCloud" parent="main" globalmax="100" localmax="100"> + +<connect name="IRCCloud-Brockwell" parent="IRCCloud" allow="192.184.10.118"> +<connect name="IRCCloud-Charlton" parent="IRCCloud" allow="192.184.9.112"> +<connect name="IRCCloud-Ealing" parent="IRCCloud" allow="192.184.9.110"> +<connect name="IRCCloud-Hathersage" parent="IRCCloud" allow="192.184.8.73"> +<connect name="IRCCloud-Highgate" parent="IRCCloud" allow="192.184.9.108"> +<connect name="IRCCloud-Stonehaven" parent="IRCCloud" allow="192.184.8.103"> +<connect name="IRCCloud-Tooting" parent="IRCCloud" allow="192.184.10.9"> diff --git a/docs/conf/providers/kiwiirc-com.conf.example b/docs/conf/providers/kiwiirc-com.conf.example new file mode 100644 index 000000000..74f296cbe --- /dev/null +++ b/docs/conf/providers/kiwiirc-com.conf.example @@ -0,0 +1,8 @@ +# This file contains connect classes which are used by KiwiIRC.com users. +# See https://kiwiirc.com for more information on KiwiIRC.com. + +<connect name="KiwiIRC.com" parent="main" globalmax="100" localmax="100" registered="no"> + +<connect name="KiwiIRC.com-1" parent="KiwiIRC.com" allow="107.161.19.10"> +<connect name="KiwiIRC.com-2" parent="KiwiIRC.com" allow="107.161.19.53"> +<connect name="KiwiIRC.com-3" parent="KiwiIRC.com" allow="109.169.31.4"> |