bump max connections per ip default to 5

This commit is contained in:
Mike Dilger 2024-07-12 11:38:44 +12:00
parent 3820813393
commit 227a104e0f
4 changed files with 5 additions and 5 deletions

View File

@ -258,6 +258,6 @@ timeout_seconds = 60
# Maximum number of websocket connections per IP address
#
# Default is 2
# Default is 5
#
max_connections_per_ip = 2
max_connections_per_ip = 5

View File

@ -225,4 +225,4 @@ Default is 60
Maximum number of websocket connections per IP address
Default is 2
Default is 5

View File

@ -29,4 +29,4 @@ client_log_level = "Warn"
enable_ip_blocking = true
minimum_ban_seconds = 1
timeout_seconds = 60
max_connections_per_ip = 2
max_connections_per_ip = 5

View File

@ -68,7 +68,7 @@ impl Default for FriendlyConfig {
enable_ip_blocking: true,
minimum_ban_seconds: 1,
timeout_seconds: 60,
max_connections_per_ip: 2,
max_connections_per_ip: 5,
}
}
}