mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-03 20:39:41 -05:00
12 lines
339 B
Lua
12 lines
339 B
Lua
core.register_service("set_var", "http", function(applet)
|
|
local var_name = applet.headers["var"][0]
|
|
local result = applet:set_var(var_name, "value")
|
|
if result then
|
|
applet:set_status(202)
|
|
else
|
|
applet:set_status(400)
|
|
end
|
|
applet:add_header("echo", applet:get_var(var_name) or "(nil)")
|
|
applet:start_response()
|
|
applet:send("")
|
|
end)
|