Files
resty_functions/download_image/download_image.lua
T
2021-08-08 18:50:54 +08:00

7 lines
269 B
Lua

-- Get download image id
local download_image_id = string.match(ngx.var.request_uri, ".*/(.*)$")
ngx.log(ngx.INFO , "Download image id: " .. download_image_id)
-- Set redirect uri
local uri = "/internal_file_upload/" .. download_image_id .. ".jpg"
return ngx.exec(uri)