需求:个人博客前端采用vue,首页加载太慢,前端打包的时候采用gzip压缩js、css等资源文件,ngnix需支持gzip。
实现方法:Centos7.2下yum直接安装的nginx,添加新模块支持gzip;重新编译Nginx并添加 --with-http_gzip_static_module 参数。
实现过程:
1. 查看nginx版本模块
2. 下载一个同版本可编译的Nginx
cd /usr/local wget http://nginx.org/download/nginx-1.12.2.tar.gz tar xf nginx-1.12.2.tar.gz && cd nginx-1.12.2
3. 重新编译Nginx
检查模块是否支持,比如这次添加 gzip 模块:
./configure –help | grep http_gzip_static_module
这里写图片描述
ps:-without-http_gzip_static_module disable 表示已有该模块,编译时,不需要添加
根据第1步查到已有的模块,加上本次需新增的模块: --with-http_gzip_static_module
cd /usr/local/nginx-1.12.2 ./configure --with-http_gzip_static_module
以上编译时,如出现缺少依赖,一般需要安装以下模块,安装完再次编译:
yum -y install libxml2 libxml2-dev libxslt-devel yum -y install gd-devel yum -y install perl-devel perl-ExtUtils-Embed yum -y install GeoIP GeoIP-devel GeoIP-data yum -y install pcre-devel yum -y install openssl openssl-devel
4. 编译通过,继续验证
继续输入:make
make完成后不要继续输入“make install”,以免现在的nginx出现问题
以上完成后,会在/usr/local/nginx-1.12.2/objs目录下生成一个nginx文件,先验证:
/usr/local/nginx-1.12.2/objs/nginx -t /usr/local/nginx-1.12.2/objs/nginx -V
5. 替换Nginx文件并重启
cd /usr/local/nginx/sbin cp /usr/local/nginx-1.12.2/objs/nginx /usr/local/nginx/sbin/ ./nginx -s reload
6. 检查
添加模块成功!