and mention in a comment where the non-default function
name can be specified.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1154265 13f79535-47bb-0310-9956-
ffa450edef68
require "string"
-function handle_something(r)
+--[[
+ This is the default method name for Lua handlers, see the optional
+ function-name in the LuaMapHandler directive to choose a different
+ entry point.
+--]]
+function handle(r)
r.content_type = "text/plain"
r:puts("Hello Lua World!\n")