wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.tar.gz tar -zxvf pcre-xxx.tar.gz cd pcre-xxx ./configure make make install
zlib,gzip压缩
1 2 3 4 5 6
wget http://zlib.net/zlib-1.2.11.tar.gz tar -zxvf zlib-xxx.tar.gz cd zlib-xxx ./configure make make install
openssl,ssl加密
1 2 3 4 5 6
wget https://www.openssl.org/source/openssl-1.0.2k.tar.gz tar -zxvf openssl-xxx.tar.gz cd openssl-xxx ./config make make install
nginx
1 2 3 4 5 6
wget http://nginx.org/download/nginx-1.10.3.tar.gz tar -zxvf nginx-xxx.tar.gz cd nginx-xxx ./configure --prefix=/opt/nginx --with-http_ssl_module --with-pcre=/opt/nginx/src/pcre-xxx --with-zlib=/opt/nginx/src/zlib-xxx --with-openssl=/opt/nginx/src/openssl-xxx make make install