From 812e82efb9f157aacb2a0279a7cdee0af2fcf3da Mon Sep 17 00:00:00 2001 From: fthielen Date: Tue, 15 Aug 2017 09:45:45 +0200 Subject: [PATCH] pcre geupdatet --- install.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/install.sh b/install.sh index 085ff06..3e91b97 100755 --- a/install.sh +++ b/install.sh @@ -59,16 +59,16 @@ fi if [ "$DIST" == "Fedora" ]; then dnf install gcc gcc-c++ autoconf automake make perl -y elif [ "$DIST" == "Ubuntu" ] || [ "$DistroBasedOn" == "debian" ]; then - apt-get install gcc g++ autoconf automake make perl -y + apt-get install gcc g++ autoconf automake make perl openssl libssl-dev -y elif [ "$DIST" == "CentOS" ]; then yum install gcc gcc-c++ autoconf automake make perl -y elif [ "$DistroBasedOn" == "suse" ]; then zypper install -y gcc gcc-c++ autoconf automake make perl fi -wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.40.tar.gz -tar -zxf pcre-8.40.tar.gz -cd pcre-8.40 +wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.41.tar.gz +tar -zxf pcre-8.41.tar.gz +cd pcre-8.41 ./configure make make install @@ -88,7 +88,7 @@ wget https://dl.google.com/dl/page-speed/psol/1.12.34.2-x64.tar.gz tar -xzvf 1.12.34.2-x64.tar.gz cd .. -./configure --sbin-path=/usr/local/nginx/nginx --conf-path=/usr/local/nginx/nginx.conf --pid-path=/usr/local/nginx/nginx.pid --with-pcre=pcre-8.40 --with-zlib=zlib-1.2.11 --with-http_ssl_module --with-stream --with-mail=dynamic --with-ipv6 --with-http_v2_module --with-http_realip_module --with-http_dav_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_slice_module --with-http_stub_status_module --with-http_addition_module --add-module=naxsi-0.55.3 --add-module=ngx-fancyindex --add-dynamic-module=headers-more-nginx-module-0.32 --add-module=ngx_pagespeed-latest-beta +./configure --sbin-path=/usr/local/nginx/nginx --conf-path=/usr/local/nginx/nginx.conf --pid-path=/usr/local/nginx/nginx.pid --with-pcre=pcre-8.41 --with-zlib=zlib-1.2.11 --with-http_ssl_module --with-stream --with-mail=dynamic --with-ipv6 --with-http_v2_module --with-http_realip_module --with-http_dav_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_slice_module --with-http_stub_status_module --with-http_addition_module --add-module=naxsi-0.55.3 --add-module=ngx-fancyindex --add-dynamic-module=headers-more-nginx-module-0.32 --add-module=ngx_pagespeed-latest-beta make make install