Skip to content

Commit 8e320bb

Browse files
author
sam bacha
committed
fix(pagespeed): update fqdn + instructions
this fixes the deadlinks for pagespeed, see [https://github.com/apache/incubator-pagespeed-ngx/issues/1656](https://github.com/apache/incubator-pagespeed-ngx/issues/1656). Also added clearer instructions if pagespeed is used as a module so that users know to adjust their `nginx.conf`
1 parent 65f1a1e commit 8e320bb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

nginx-autoinstall.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ NGINX_MAINLINE_VER=1.19.6
1111
NGINX_STABLE_VER=1.18.0
1212
LIBRESSL_VER=3.3.1
1313
OPENSSL_VER=1.1.1i
14-
NPS_VER=1.13.35.2
14+
NPS_VER=1.14.33.1-RC1
1515
HEADERMOD_VER=0.33
1616
LIBMAXMINDDB_VER=1.4.3
1717
GEOIP2_VER=3.3
@@ -189,7 +189,7 @@ case $OPTION in
189189

190190
# Dependencies
191191
apt-get update
192-
apt-get install -y build-essential ca-certificates wget curl libpcre3 libpcre3-dev autoconf unzip automake libtool tar git libssl-dev zlib1g-dev uuid-dev lsb-release libxml2-dev libxslt1-dev cmake
192+
apt-get install -qy apt-utils build-essential ca-certificates wget curl libpcre3 libpcre3-dev autoconf unzip automake libtool tar git libssl-dev zlib1g-dev uuid-dev lsb-release libxml2-dev libxslt1-dev cmake
193193

194194
if [[ $MODSEC == 'y' ]]; then
195195
apt-get install -y apt-utils libcurl4-openssl-dev libgeoip-dev liblmdb-dev libpcre++-dev libyajl-dev pkgconf
@@ -198,11 +198,10 @@ case $OPTION in
198198
# PageSpeed
199199
if [[ $PAGESPEED == 'y' ]]; then
200200
cd /usr/local/src/nginx/modules || exit 1
201-
wget https://github.com/pagespeed/ngx_pagespeed/archive/v${NPS_VER}-stable.zip
202-
unzip v${NPS_VER}-stable.zip
203-
cd incubator-pagespeed-ngx-${NPS_VER}-stable || exit 1
204-
psol_url=https://dl.google.com/dl/page-speed/psol/${NPS_VER}.tar.gz
205-
[ -e scripts/format_binary_url.sh ] && psol_url=$(scripts/format_binary_url.sh PSOL_BINARY_URL)
201+
wget https://github.com/apache/incubator-pagespeed-ngx/archive/v${NPS_VER}.zip
202+
unzip v${NPS_VER}.zip
203+
cd incubator-pagespeed-ngx-${NPS_VER} || exit 1
204+
psol_url=https://dist.apache.org/repos/dist/release/incubator/pagespeed/1.14.36.1/x64/psol-${NPS_VER}-apache-incubating-x64.tar.gz
206205
wget "${psol_url}"
207206
tar -xzvf "$(basename "${psol_url}")"
208207
fi
@@ -396,6 +395,7 @@ case $OPTION in
396395
echo "$NGINX_MODULES"
397396
echo "--add-module=/usr/local/src/nginx/modules/incubator-pagespeed-ngx-${NPS_VER}-stable"
398397
)
398+
399399
fi
400400

401401
if [[ $BROTLI == 'y' ]]; then

0 commit comments

Comments
 (0)