Nginx 集成 lua 模块扩展功能,以及遇到的一些问题

Nginx 集成 lua 模块扩展功能,以及遇到的一些问题,第1张

时间 2021-11-18

文章中使用的服务器环境为 CentOS 7.6 阿里云的镜像, nginx 为 yum 安装的1.20.1版本, luajit 这个是lua 的编译器 版本为 2.0.2, lua-nginx-module 版本为0.10.15

成功打印hello word

nginx + lua 可以直接把nginx的可扩展性拉上了一个不敢想象的层次,你可以使用各种lua的模块来实现一些复杂的功能,使nginx成为一个可以都独当一面的存在。喜欢折腾而且nginx已经运行一段时间的可以使用以上的方法,如果初次接触nginx就有这方面的需求的话建议直接使用 OpenResty® - 中文官方站 国人大佬开发的一个基于 nginx + lua 的web平台,可以省去折腾的麻烦。

/etc/profile 中添加如下配置

执行 source /etc/profile

执行 luarocks list 查看是否安装成功

lua文件上传直连:

nginx配置

注意:

文件存储路径

指定上传逻辑代码路径

在nginx上添加一个server

#上传文件服务

server

{

listen 19999

set $store_dir "/data/vue/fffoa/"# 文件存储路径

location /upfile {

content_by_lua_file conf/lua/upload.lua# 实现文件上传的逻辑

}

location /download {

autoindex on

autoindex_localtime on

alias /data/vue/fffoa/

index index.html

}

access_log logs/uploadfile_access.log main

error_log logs/uploadfile_error.log crit

}

登录后复制

实现上传逻辑代码 conf/lua/upload.lua

注意:我使用的是openresty,可以直接引用resty.upload等lua库,如果你是nginx,还需要找到upload.lua、cjson库

-- upload.lua

--==========================================

-- 文件上传

--==========================================

local upload = require "resty.upload"

local cjson = require "cjson"

local chunk_size = 4096

local form, err = upload:new(chunk_size)

if not form then

ngx.log(ngx.ERR, "failed to new upload: ", err)

ngx.exit(ngx.HTTP_INTERNAL_SERVER_ERROR)

end

form:set_timeout(1000)

-- 字符串 split 分割

string.split = function(s, p)

local rt= {}

string.gsub(s, '[^'..p..']+', function(w) table.insert(rt, w) end )

return rt

end

-- 支持字符串前后 trim

string.trim = function(s)

return (s:gsub("^%s*(.-)%s*$", "%1"))

end

-- 文件保存的根路径

local saveRootPath = ngx.var.store_dir

-- 保存的文件对象

local fileToSave

--文件是否成功保存

local ret_save = false

while true do

local typ, res, err = form:read()

if not typ then

ngx.say("failed to read: ", err)

return

end

if typ == "header" then

-- 开始读取 http header

-- 解析出本次上传的文件名

local key = res[1]

local value = res[2]

if key == "Content-Disposition" then

-- 解析出本次上传的文件名

-- form-dataname="testFileName"filename="testfile.txt"

local kvlist = string.split(value, '')

for _, kv in ipairs(kvlist) do

local seg = string.trim(kv)

if seg:find("filename") then

local kvfile = string.split(seg, "=")

local filename = string.sub(kvfile[2], 2, -2)

if filename then

fileToSave = io.open(saveRootPath .. filename, "w+")

if not fileToSave then

ngx.say("failed to open file ", filename)

return

end

break

end

end

end

end

elseif typ == "body" then

-- 开始读取 http body

if fileToSave then

fileToSave:write(res)

end

elseif typ == "part_end" then

-- 文件写结束,关闭文件

if fileToSave then

fileToSave:close()

fileToSave = nil

end

ret_save = true

elseif typ == "eof" then

-- 文件读取结束

break

else

ngx.log(ngx.INFO, "do other things")

end

end

if ret_save then

ngx.say("save file ok")

end

登录后复制

测试上传文件

在postman里面写上 地址:19999/upload/

配置好文件,选发送,上传成功显示 save file ok

查看服务器内容

CSDN_码404:使用openresty的lua-resty-upload实现文件上传

nginx

lua

点赞文章给优秀博主打call~


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11415407.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-15
下一篇 2023-05-15

发表评论

登录后才能评论

评论列表(0条)

保存