examples/lua-example.lua
author Mahlon E. Smith <mahlon@martini.nu>
Tue, 09 Jun 2015 16:36:16 -0700
changeset 33 ba41bfbe87a2
parent 22 822094314703
permissions -rw-r--r--
Updates to support the newer Squid rewrite syntax.


-- examine the request.
-- this emits to stderr!
--
for k,v in pairs( request ) do print( string.format("request.%-6s --> %s", k, v) ) end

-- all variables need to be declared using local scoping!
--
local redir = 302

-- temporary redirect to a different site, every other second.
-- why would you want to do this?  you probably wouldn't.  just illustrating
-- how easy it is to do custom stuff.
--
if os.time() % 2 == 0 then
	return string.format( "OK status=%d url=http://example.com%s", redir, request.path )
end