7 lines
269 B
Lua
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) |