We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 341f12e commit 4be7923Copy full SHA for 4be7923
mod_limits.c
@@ -281,7 +281,7 @@ static command_rec limits_cmds[] = {
281
"maximum permitted load average" ),
282
AP_INIT_TAKE1(
283
"CheckLoadInterval", cfg_checkavg, NULL, RSRC_CONF,
284
- "maximum simultaneous connections per user" ),
+ "time between checks of the load average, it is useless under 5 seconds, because the kernel do not update it so often" ),
285
#else
286
{"LimitMaxConnsPerIP", cfg_perip, NULL, RSRC_CONF, TAKE1,
287
"maximum simultaneous connections per IP address" },
@@ -292,7 +292,7 @@ static command_rec limits_cmds[] = {
292
{ "LimitMaxLoadAVG", cfg_loadavg, NULL, RSRC_CONF, TAKE1,
293
"maximum permitted load average" },
294
{ "CheckLoadInterval", cfg_checkavg, NULL, RSRC_CONF, TAKE1,
295
- "maximum simultaneous connections per user" },
+ "time between checks of the load average, it is useless under 5 seconds, because the kernel do not update it so often" },
296
#endif
297
{NULL}
298
};
0 commit comments