首页 > 其他 > 详细

nginx-1.15.5安装记录

时间:2018-11-03 01:42:18      阅读:210      评论:0      收藏:0      [点我收藏+]
mkdir /mysoftware cd /mysoftware wget https://www.cpan.org/src/5.0/perl-5.28.0.tar.gz tar -zxvf perl-5.28.0.tar.gz cd perl-5.28.0 ./Configure -des -Dprefix=$HOME/localperl make make install cd .. wget -c https://github.com/openssl/openssl/archive/master.zip unzip master.zip cd openssl-master ./config --prefix=/usr/local/openssl-1.1.2 make make install cd .. wget -c https://zlib.net/zlib-1.2.11.tar.gz tar -zxvf zlib-1.2.11.tar.gz cd zlib-1.2.11 ./configure --prefix=/usr/local/zlib-1.2.11 make make install cd .. wget -c https://sourceforge.net/projects/pcre/files/pcre/8.42/pcre-8.42.tar.gz/download -O pcre-8.42.tar.gz tar -zxvf pcre-8.42.tar.gz cd pcre-8.42 ./configure --prefix=/usr/local/pcre-8.42 make make install cd .. wget -c http://nginx.org/download/nginx-1.15.5.tar.gz ./configure --prefix=/usr/local/nginx-1.15.5 --with-http_ssl_module --with-http_gzip_static_module --with-http_stub_status_module --with-pcre=../pcre-8.42 --with-openssl=../openssl-master --with-zlib=../zlib-1.2.11 make && make install

nginx-1.15.5安装记录

原文:http://blog.51cto.com/quietnight/2312397

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!