1、编译nginx要求
1)、GCC编译器以及相关工具:
GCC可编译的语言包括:C、C++、Java;还需安装antoconf和automake工具、用于自动创建功能完善的makefile,当前大多数软件都是用这一工具生成makefile的,nginx也不例外。
yum install gcc gcc-c++ autoconf automake
2)、模块依赖性:
nginx的一些模块需要第三方库的支持,例如gzip模块需要zlib库、rewrite模块需要pcre库、ssl模块需要openssl库等。
yum install zlib zlib-devel pcre pcre-devel openssl openssl-devel
2、下载
到官网查看版本,根据需求下载:
http://nginx.org/en/download.html
这里1.8.0是稳定版,特此下载:
wget http://nginx.org/download/nginx-1.8.0.tar.gz
3、编译安装三部曲
tar vxzf nginx-1.8.0.tar.gz
cd nginx-1.8.0
./configure --with-http_stub_status_module --with-http_gzip_static-module
make && make install