Files
apache_httpd/modules/lua/test/htdocs/simple.lua

5 lines
79 B
Lua

function handle(r)
r.content_type = "text/plain"
r:puts("Hi there!")
end