标签:
[root@zzx nginx-1.10.1]# yum install -y openssl openssl-devel zlib pcre yum安装的pcre版本很低 可以编译安装高版本
yum install -y gcc gcc-c++ 编译安装需要gcc
tar zxf pcre-8.39.tar.gz
cd pcre-8.39
./configure
make
make install
tar
[root@zzx ~]# tar zxf nginx-1.10.1.tar.gz
指定用户和组 指定安装位置和安装模块
[root@zzx nginx-1.10.1]# ./configure --user=nginx --group=nginx --prefix=/application/nginx-1.10.1 --with-http_stub_status_module --with-http_ssl_module
[root@zzx nginx-1.10.1]# make
[root@zzx nginx-1.10.1]# make install
标签:
原文地址:http://www.cnblogs.com/hanxing/p/5765626.html