liquid_feedback_frontend

changeset 1169:112a3add1637

Pass memory_limit configuration to listen() and changed max fork limit to 128
author bsw
date Tue Mar 24 20:02:30 2015 +0100 (2015-03-24)
parents 3b00c08a6b90
children 2888bdc21ed5
files app/main/_prefork/10_init.lua
line diff
     1.1 --- a/app/main/_prefork/10_init.lua	Tue Mar 24 19:34:03 2015 +0100
     1.2 +++ b/app/main/_prefork/10_init.lua	Tue Mar 24 20:02:30 2015 +0100
     1.3 @@ -11,7 +11,7 @@
     1.4  end
     1.5  
     1.6  if config.fork.max == nil then
     1.7 -  config.fork.max = 8
     1.8 +  config.fork.max = 128
     1.9  end
    1.10  
    1.11  if config.fork.delay == nil then
    1.12 @@ -46,6 +46,7 @@
    1.13    fork_error_delay      = config.fork.error_delay,
    1.14    exit_delay            = config.fork.exit_delay,
    1.15    idle_timeout          = config.fork.idle_timeout,
    1.16 +  memory_limit          = config.fork.memory_limit,
    1.17    min_requests_per_fork = config.fork.min_requests,
    1.18    max_requests_per_fork = config.fork.max_requests,
    1.19    http_options          = config.http_options

Impressum / About Us