summaryrefslogtreecommitdiffstats
path: root/modules/lua/test/htdocs/headers.lua
diff options
context:
space:
mode:
Diffstat (limited to 'modules/lua/test/htdocs/headers.lua')
-rw-r--r--modules/lua/test/htdocs/headers.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/lua/test/htdocs/headers.lua b/modules/lua/test/htdocs/headers.lua
new file mode 100644
index 0000000..35938ea
--- /dev/null
+++ b/modules/lua/test/htdocs/headers.lua
@@ -0,0 +1,6 @@
+function handle(r)
+ local host = r.headers_in['host']
+ r:debug(host)
+ r:puts(host)
+ r.headers_out['wombat'] = 'lua'
+end