<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
安裝環境的指令碼
#!/bin/bash apt-get update apt-get install gcc g++ make wget openssl libssl-dev vim bzip2 -y tar xzvf LuaJIT-2.0.4.tar.gz cd LuaJIT-2.0.4 make install PREFIX=/usr/local/luajit echo 'export LUAJIT_LIB=/usr/local/luajit/lib'>>/etc/bashrc echo 'export LUAJIT_INC=/usr/local/luajit/include/luajit-2.0'>>/etc/bashrc source /etc/bashrc cd /root/nginx_lua # 注意你把檔案檔案放在哪裡就去哪裡!!! tar xf LuaJIT-2.0.4.tar.gz tar -xzvf v0.10.9rc7.tar.gz -C /usr/local/src # lua-nginx-module-0.10.9rc7 tar -xzvf v0.3.0.tar.gz -C /usr/local/src tar jxvf pcre-8.42.tar.bz2 -C /usr/local/src/ tar zxvf zlib-1.2.11.tar.gz -C /usr/local/src/ tar -xzvf nginx-1.16.1.tar.gz -C /usr/local/src ln -s /usr/local/nginx/sbin/nginx /usr/bin/nginx cd /usr/local/src/nginx-1.16.1 ./configure --prefix=/usr/local/nginx --add-module=/usr/local/src/ngx_devel_kit-0.3.0 --add-module=/usr/local/src/lua-nginx-module-0.10.9rc7 --with-http_ssl_module --with-pcre=/usr/local/src/pcre-8.42 --with-zlib=/usr/local/src/zlib-1.2.11 --with-http_stub_status_module --without-http-cache --with-http_gzip_static_module make -j2 make install cp /usr/local/luajit/lib/libluajit-5.1.so.2 /usr/local/lib/ echo "/usr/local/lib" >>/etc/ld.so.conf /sbin/ldconfig mv /usr/local/nginx/conf/nginx.conf /tmp cd /root/nginx_lua # 注意你把檔案檔案放在哪裡就去哪裡!!! cp nginx.conf /usr/local/nginx/conf/ cp -r lua /usr/local/nginx/conf/ nginx #curl 127.0.0.1/hello #curl 127.0.0.1/lua
nginx.conf
worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; location / { root html; index index.html index.htm; } location /hello { default_type 'text/plain'; content_by_lua 'ngx.say("hello,lua")'; } location /lua { default_type 'text/html'; content_by_lua_file conf/lua/test.lua; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } }
test.lua
ngx.say("hello lua");
啟動nginx:
nginx
雖然都是hello lua ,但是我也不知道為什麼字型顯示的竟然不同
在Ubuntu18.04中,其它的包不變,與上面16.04中一致,要變動 lua-nginx-module
包的版本,變動為lua-nginx-module-0.10.14rc7
... tar -xzvf v0.10.14rc7.tar.gz -C /usr/local/src # lua-nginx-module-0.10.14rc7 ... ./configure --prefix=/usr/local/nginx --add-module=/usr/local/src/ngx_devel_kit-0.3.0 --add-module=/usr/local/src/lua-nginx-module-0.10.14rc7 --with-http_ssl_module --with-pcre=/usr/local/src/pcre-8.42 --with-zlib=/usr/local/src/zlib-1.2.11 --with-http_stub_status_module --without-http-cache --with-http_gzip_static_module ...
如果出現如下情況,那麼就要替換 lua-nginx-module
的使用版本啦
devel_kit-0.3.0/src -I /home/usr/ngx_devel_kit-0.3.0/src -I /home/usr/ngx_devel_kit-0.3.0/objs -I objs/addon/ndk -I /usr/local/include/luajit-2.0 -o objs/addon/src/ngx_http_lua_req_body.o /home/usr/lua-nginx-module-0.10.8/src/ngx_http_lua_req_body.c /home/usr/lua-nginx-module-0.10.8/src/ngx_http_lua_headers.c: In function 'ngx_http_lua_ngx_req_raw_header': /home/usr/lua-nginx-module-0.10.8/src/ngx_http_lua_headers.c:151:15: error: incompatible types when assigning to type 'ngx_buf_t * {aka struct ngx_buf_s *}' from type 'ngx_chain_t {aka struct ngx_chain_s}' b = hc->busy[i]; ^ /home/usr/lua-nginx-module-0.10.8/src/ngx_http_lua_headers.c:227:15: error: incompatible types when assigning to type 'ngx_buf_t * {aka struct ngx_buf_s *}' from type 'ngx_chain_t {aka struct ngx_chain_s}' b = hc->busy[i]; ^ objs/Makefile:1465: recipe for target 'objs/addon/src/ngx_http_lua_headers.o' failed make[1]: *** [objs/addon/src/ngx_http_lua_headers.o] Error 1 make[1]: *** Waiting for unfinished jobs.... make[1]: Leaving directory '/home/usr/nginx-1.17.10' make: *** [build] Error 2 Makefile:8: recipe for target 'build' failed
lua-nginx-module
各版本的下載地址,這個包的版本不同會導致各種錯誤,目前我偵錯啦16.04和18.04,這包如果實在裝不上,就多試一下其它版本的有奇效
https://github.com/openresty/lua-nginx-module/tags
圖片縮圖的原理就是使用,作業系統的處理圖片的convert
命令
在偵錯圖片縮圖前先在系統內測試一下如下命令
# /home/3.jpg 圖片地址 # /home/3_100x100.jpg 切割後的圖片存放地址 convert /home/3.jpg -resize 100x100 +profile "*" /home/3_100x100.jpg
一般是有的這個命令, 但是也有部分會出現 bash: convert: command not found
出現這個也不要慌,使用如下命令進行安裝
apt-get install imagemagick -y
好啦進入正題, 開始先編寫lua指令碼
ImageResizer.lua
local ext = ngx.var.ext local filepath_i = ngx.var.request_filepath local filepath = filepath_i .. "." .. ext local width = ngx.var.width local height = ngx.var.height local command = "convert " .. filepath .. " -resize " .. width .. "x" .. height .. " +profile "*" " .. filepath_i .. "_" .. width .. "x" .. height .. "." .. ext; os.execute(command); -- ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ --這個方法是在lua指令碼裡面直接讀取切好的縮圖,讀取完通過 ngx.say 返回二進位制 local filename = filepath_i .. "_" .. width .. "x" .. height .. "." .. ext; local photo_size = io.open(filename,"rb") local photo_data_size = photo_size:read("*a"); photo_size:close(); ngx.say(photo_data_size); -- ↑ ↑ ↑ ↑ ↑ ↑ ↑ ↑ ↑ ↑ ↑ ↑ ↑ ↑ ↑ ↑ ↑ ↑ -- 如果不想在lua中讀取圖片的話,使用 ngx.exec(ngx.var.request_uri); -- 這個表示重新請求這個地址 /xxx/1_100x100.jpg --ngx.exec(ngx.var.request_uri);
nginx.conf
user root; worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; location / { root html; index index.html index.htm; } location /hello { default_type 'text/plain'; content_by_lua 'ngx.say("hello,lua")'; } location /lua { default_type 'text/html'; content_by_lua_file conf/lua/test.lua; } location ~* /photo/(.*)_(d+)x(d+).(jpg|png|jpeg|gif|JPG|PNG|JPEG|GIF)$ { root /; if (!-f $request_filename) { lua_code_cache on; set $request_filepath /$1; set $width $2; set $height $3; set $ext $4; # 載入外部 Lua 檔案 注意!!! 這個檔案因為要切割圖片需要許可權 # 載入外部 Lua 檔案 注意!!! 這個檔案因為要切割圖片需要許可權 # 載入外部 Lua 檔案 注意!!! 這個檔案因為要切割圖片需要許可權 content_by_lua_file conf/lua/ImageResizer.lua; #載入外部 Lua 檔案 注意!!! 這個檔案需要許可權 } } location /photo/ { alias /; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } }
編寫完之後
重啟nginx
nginx -s reload
存取
http://127.0.0.1/photo/home/3.jpg # 原圖
http://127.0.0.1/photo/home/3_100x100.jpg # 縮圖
文中使用的檔案 nginx_lua_jb51.rar
到此這篇關於Nginx中使用Lua指令碼與圖片的縮圖處理的實現的文章就介紹到這了,更多相關Nginx使用Lua指令碼處理縮圖內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45