mirror of
https://gitgud.io/fatchan/haproxy-protection.git
synced 2025-05-09 02:05:37 +00:00
10 lines
334 B
Lua
10 lines
334 B
Lua
guard = {}
|
|
|
|
function guard.hello_world(applet)
|
|
applet:set_status(200)
|
|
local response = string.format([[<html><body>Hello World!</body></html>]], message);
|
|
applet:add_header("content-type", "text/html");
|
|
applet:add_header("content-length", string.len(response))
|
|
applet:start_response()
|
|
applet:send(response)
|
|
end |