Project

General

Profile

max-keep-alive-requests & max-keep-alive-idle = per host ?

Added by waza123a over 14 years ago

If I set this two variables per host, will they work correct ? Or this variables is global for all hosts and server will use latest params ? Thanks for answer.

$HTTP["HOST"] =~ "first.host" {
max-keep-alive-requests = 0
max-keep-alive-idle = 7
//etc
}

$HTTP["HOST"] =~ "second.host" {
max-keep-alive-requests = 30
max-keep-alive-idle = 30
//etc
}

$HTTP["HOST"] =~ "another.host" {
max-keep-alive-requests = 360
max-keep-alive-idle = 360
//etc
}