nginx的这个模块在之前曾经关注过,因为其效率问题并没有使用(默认是无缓存的,所以使用中要结合slowfs或者varnish使用)。近期,公司大牛们把这个模块的源码进行了修改,想实现图片的动态缩略图显示。老大告之,源码暂时不能开源,这里先记录下配置过程,后续给出使用及测试结果。大家可以google其功能和使用方法。
一.安装支持组件
1.安装libjpeg
tar zxvf jpegsrc.v8a.tar.gz
cd jpeg-8a
###32位系统###
./configure --prefix=/usr/local/jpeg8 --enable-shared --enable-static
make;make install
###64位系统###
CFLAGS="-O3 -fPIC" ./configure --prefix=/usr/local/jpeg8 --enable-shared --enable-static
make
make install
2.安装libpng
tar zxvf libpng-1.4.1.tar.gz
cd libpng-1.4.1
./configure
make;make install
3.安装freetype
tar xzvf freetype-2.3.5.tar.gz
cd freetype-2.3.5
./configure --prefix=/usr/local/freetype
make
make install
4.安装zlib
tar xzvf zlib-1.2.3.tar.gz
cd zlib-1.2.3
./configure make
make install
5.安装gd
tar zxvf gd-2.0.35.tar.gz
cd gd-2.0.35
./configure --with-jpeg=/usr/local/jpeg8 --with-png -with-zlib -with-freetype=/usr/local/freetype
此时make报错:undefined reference to `png_check_sig’
vi gd_png.c文件,将
if (!png_check_sig (sig, 8)) { /* bad signature */
return NULL;
}
修改为
if (png_sig_cmp (sig, 0, 8)) { /* bad signature */
return NULL;}
make;make install
二.编译安装nginx
此步骤我们简单带过,因为互联网上关于nginx的安装方法太多了
在编译nginx时候请指定如下:
1. ./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_stub_status_module --with-http_ssl_module --with-http_p_w_picpath_filter_module
此时make报错:
cc1: warnings being treated as errors src/http/modules/ngx_http_p_w_picpath_filter_module.c: In function ‘ngx_http_p_w_picpath_resize’: src/http/modules/ngx_http_p_w_picpath_filter_module.c:814: warning: ‘resize’ is used uninitialized in this function
make[1]: *** [objs/src/http/modules/ngx_http_p_w_picpath_filter_module.o] Error 1 make[1]: Leaving directory `/root/nginx-0.8.34' make: *** [install] Error 2
此问题是由于gcc选项中将warning信息当做error处理,导致编译失败。解决办法如下:
./configure完之后vi objs/Makefile
修改前几行内容如下:
CFLAGS = -pipe -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Wunused-function -Wunused-variable -Wunused-value -g
再次make;make install编译得以通过
2.vi /usr/local/nginx/conf/nginx.conf
在虚拟主机(server)块中
#add;example
location ~* /small/b(\d+)/e(\d+)/(.*)$ {
rewrite "/small/b(\d+)/e(\d+)/(.*)$" /$3 break ;
p_w_picpath_filter dyna_crop;
error_page 415 = /error.jpg;
}
location = /error.jpg {
root test;
}
3.后续过程
mkdir /usr/local/nginx/html/empty
touch error.jpg
此时启动nginx出现报错信息如下:
/usr/local/nginx/sbin/nginx: error while loading shared libraries: libgd.so.2
是由于系统并未加载libgd这个模块,那就手动加载吧:
直接/sbin/ldconfig
再次启动nginx 成功
注:p_w_picpath/1.jpg为实际存储的图片路径
好了,先说这么多 有时间补充完整