Files
resty_functions/scripts/upload_combined_image.lua
T

9 lines
301 B
Lua
Raw Normal View History

2022-03-08 21:59:25 +08:00
package.path = package.path .. ';<SCRIPT_PATH>/?.lua';
local upyun_upload = require("upyun_upload")
local file_to_upload = string.match(ngx.var.request_uri, ".*/(.*)")
local file_dir = ngx.var.tmp_file_dir
local fullpath = file_dir .. "/" .. file_to_upload .. ".jpeg";
upyun_upload.upload(fullpath)