diff --git a/doc/configuration.txt b/doc/configuration.txt index 310251671..be5b26c08 100644 --- a/doc/configuration.txt +++ b/doc/configuration.txt @@ -574,6 +574,7 @@ The following keywords are supported in the "global" section : - tune.lua.maxmem - tune.lua.session-timeout - tune.lua.task-timeout + - tune.lua.service-timeout - tune.maxaccept - tune.maxpollevents - tune.maxrewrite @@ -1183,10 +1184,9 @@ tune.lua.maxmem tune.lua.session-timeout This is the execution timeout for the Lua sessions. This is useful for - preventing infinite loops or spending too much time in Lua. This timeout has a - priority over other timeouts. For example, if this timeout is set to 4s and - you run a 5s sleep, the code will be interrupted with an error after waiting - 4s. + preventing infinite loops or spending too much time in Lua. This timeout + counts only the pure Lua runtime. If the Lua does a sleep, the sleep is + not taked in account. The default timeout is 4s. tune.lua.task-timeout Purpose is the same as "tune.lua.session-timeout", but this timeout is @@ -1194,6 +1194,12 @@ tune.lua.task-timeout remain alive during of the lifetime of HAProxy. For example, a task used to check servers. +tune.lua.service-timeout + This is the execution timeout for the Lua services. This is useful for + preventing infinite loops or spending too much time in Lua. This timeout + counts only the pure Lua runtime. If the Lua does a sleep, the sleep is + not taked in account. The default timeout is 4s. + tune.maxaccept Sets the maximum number of consecutive connections a process may accept in a row before switching to other work. In single process mode, higher numbers @@ -3412,7 +3418,6 @@ http-request { allow | deny | tarpit | auth [realm ] | redirect | sc-inc-gpc0() | sc-set-gpt0() | silent-drop | - lua } [ { if | unless } ] Access control for Layer 7 requests @@ -3687,10 +3692,6 @@ http-request { allow | deny | tarpit | auth [realm ] | redirect | designated by . If an error occurs, this action silently fails and the actions evaluation continues. - - "lua" is used to run a Lua function if the action is executed. The single - parameter is the name of the function to run. The prototype of the - function is documented in the API documentation. - - set-var() : Is used to set the contents of a variable. The variable is declared inline. @@ -3818,7 +3819,6 @@ http-response { allow | deny | add-header | set-nice | sc-inc-gpc0() | sc-set-gpt0() | silent-drop | - lua } [ { if | unless } ] Access control for Layer 7 responses @@ -3975,10 +3975,6 @@ http-response { allow | deny | add-header | set-nice | with large lists! It is the equivalent of the "set map" command from the stats socket, but can be triggered by an HTTP response. - - "lua" is used to run a Lua function if the action is executed. The single - parameter is the name of the function to run. The prototype of the - function is documented in the API documentation. - - capture id : captures sample expression from the response buffer, and converts it to a string. The resulting string is stored into the next request @@ -8643,7 +8639,6 @@ tcp-request content [{if | unless} ] - { track-sc0 | track-sc1 | track-sc2 } [table ] - sc-inc-gpc0() - set-gpt0() - - lua - set-var() - silent-drop @@ -8675,11 +8670,6 @@ tcp-request content [{if | unless} ] wait until the inspect delay expires when the data to be tracked is not yet available. - The "lua" keyword is followed by a Lua function name. It is used to run a Lua - function if the action is executed. The single parameter is the name of the - function to run. The prototype of the function is documented in the API - documentation. - The "set-var" is used to set the content of a variable. The variable is declared inline. @@ -8849,9 +8839,6 @@ tcp-response content [{if | unless} ] or false (when used with "unless"). The first such rule executed ends the rules evaluation. Rejected session are immediately closed. - - lua - Executes Lua. - - set-var() Sets a variable. @@ -8894,11 +8881,6 @@ tcp-response content [{if | unless} ] the best solution involves detecting the HTTP protocol during the inspection period. - The "lua" keyword is followed by a Lua function name. It is used to run a Lua - function if the action is executed. The single parameter is the name of the - function to run. The prototype of the function is documented in the API - documentation. - The "set-var" is used to set the content of a variable. The variable is declared inline.