1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00
Files
apache/modules/lua/test/htdocs/simple.lua

5 lines
79 B
Lua

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