mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
oragono: Fix config so it loads
This commit is contained in:
@ -16,6 +16,8 @@ server:
|
|||||||
|
|
||||||
check-ident: false
|
check-ident: false
|
||||||
|
|
||||||
|
max-sendq: 16k
|
||||||
|
|
||||||
connection-limits:
|
connection-limits:
|
||||||
cidr-len-ipv4: 24
|
cidr-len-ipv4: 24
|
||||||
cidr-len-ipv6: 120
|
cidr-len-ipv6: 120
|
||||||
@ -25,14 +27,31 @@ server:
|
|||||||
- "127.0.0.1/8"
|
- "127.0.0.1/8"
|
||||||
- "::1/128"
|
- "::1/128"
|
||||||
|
|
||||||
registration:
|
connection-throttling:
|
||||||
accounts:
|
enabled: true
|
||||||
|
cidr-len-ipv4: 32
|
||||||
|
cidr-len-ipv6: 128
|
||||||
|
duration: 10m
|
||||||
|
max-connections: 12
|
||||||
|
ban-duration: 10m
|
||||||
|
ban-message: You have attempted to connect too many times within a short duration. Wait a while, and you will be able to connect.
|
||||||
|
|
||||||
|
exempted:
|
||||||
|
- "127.0.0.1/8"
|
||||||
|
- "::1/128"
|
||||||
|
|
||||||
|
accounts:
|
||||||
|
registration:
|
||||||
enabled: true
|
enabled: true
|
||||||
verify-timeout: "120h"
|
verify-timeout: "120h"
|
||||||
enabled-callbacks:
|
enabled-callbacks:
|
||||||
- none # no verification needed, will instantly register successfully
|
- none # no verification needed, will instantly register successfully
|
||||||
|
|
||||||
authentication-enabled: true
|
authentication-enabled: true
|
||||||
|
|
||||||
|
channels:
|
||||||
|
registration:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
datastore:
|
datastore:
|
||||||
path: {directory}/ircd.db
|
path: {directory}/ircd.db
|
||||||
@ -46,6 +65,9 @@ limits:
|
|||||||
monitor-entries: 100
|
monitor-entries: 100
|
||||||
whowas-entries: 100
|
whowas-entries: 100
|
||||||
chan-list-modes: 60
|
chan-list-modes: 60
|
||||||
|
linelen:
|
||||||
|
tags: 2048
|
||||||
|
rest: 2048
|
||||||
"""
|
"""
|
||||||
|
|
||||||
class OragonoController(BaseServerController, DirectoryBasedController):
|
class OragonoController(BaseServerController, DirectoryBasedController):
|
||||||
|
Reference in New Issue
Block a user