nginx lua 文件下载

nginx  lua 文件下载 ( nginx.conf文件里添加 )

# Lua非阻塞IO 
location = /oo {
  content_by_lua '
    local res = ngx.location.capture("/O8ZW0WXJN.jpg")
    if res.status == 200 then
     ngx.header["Content-Disposition"] = "attachment; filename=O8ZW0WXJN.jpg" 
     ngx.header["Content-Type"] ="image/png"
      ngx.print(res.body )
    end
  ';
}


你可能感兴趣的:(nginx lua 文件下载)