Browse Source

Update config options a little more, add note in readme to modify them

tags/v0.10.0
Daniel Oaks 6 years ago
parent
commit
7217bf5b85
2 changed files with 4 additions and 3 deletions
  1. 2
    1
      docs/README
  2. 2
    2
      oragono.yaml

+ 2
- 1
docs/README View File

@@ -25,7 +25,8 @@ Copy the example config file to ircd.yaml with a command like:
25 25
 
26 26
     $ cp oragono.yaml ircd.yaml
27 27
 
28
-Modify the config file as you like.
28
+Modify the config file as you like. In particular, the `connection-throttling` and
29
+`connection-limits` sections are working looking over and tuning for your network's needs.
29 30
 
30 31
 To generate passwords for opers and connect passwords, you can use this command:
31 32
 

+ 2
- 2
oragono.yaml View File

@@ -98,13 +98,13 @@ server:
98 98
         cidr-len-ipv4: 32
99 99
 
100 100
         # how wide the cidr should be for IPv6
101
-        cidr-len-ipv6: 128
101
+        cidr-len-ipv6: 64
102 102
 
103 103
         # how long to keep track of connections for
104 104
         duration: 10m
105 105
 
106 106
         # maximum number of connections, per subnet, within the given duration
107
-        max-connections: 64
107
+        max-connections: 32
108 108
 
109 109
         # how long to ban offenders for, and the message to use
110 110
         # after banning them, the number of connections is reset (which lets you use UNDLINE to unban people)

Loading…
Cancel
Save