Skip to content

Instantly share code, notes, and snippets.

@kohey18
kohey18 / send_image.lua
Created April 17, 2014 11:00
send_image.lua
local image_path = ngx.var.image_path
local images_dir = "/home/koheyhey/localdata/" -- where images come from
local function return_not_found(msg)
ngx.status = ngx.HTTP_NOT_FOUND
ngx.header["Content-type"] = "text/html"
ngx.say(msg or "not found")
ngx.exit(0)
end