-- hello.lua add_route("/lua/hello", function(req) log("hello.lua handling request for " .. (req.path or "unknown")) -- return (status, headers_table, body_string) return 200, {["Content-Type"] = "text/html"}, "

Hello from Lua plugin!


Why is this here?
To test the Lua plugin manager

" end)