This commit is contained in:
2022-03-09 03:09:11 +08:00
parent a90735d308
commit eedf2f93aa
+3 -1
View File
@@ -33,7 +33,9 @@ function upyun_upload.upload(filepath)
return
else
ngx.status = 200
ngx.say(ngx.var.upyun_cdn .. directory .. "/" .. filename)
local fullpath = ngx.var.upyun_cdn .. directory .. "/" .. filename
ngx.log(ngx.INFO, "UPYUN URL -> ", fullpath)
ngx.say(fullpath)
end
end