2017-04-11 13:49:15 +00:00
|
|
|
#!/bin/bash
|
2017-01-31 18:19:58 +00:00
|
|
|
|
|
|
|
# Copyright 2015 The Kubernetes Authors.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
|
2017-10-08 13:57:29 +00:00
|
|
|
set -o errexit
|
|
|
|
set -o nounset
|
|
|
|
set -o pipefail
|
2017-01-31 18:19:58 +00:00
|
|
|
|
2019-05-26 02:02:47 +00:00
|
|
|
export NGINX_VERSION=1.17.0
|
2018-06-16 18:15:31 +00:00
|
|
|
export NDK_VERSION=0.3.1rc1
|
2018-07-21 22:12:29 +00:00
|
|
|
export SETMISC_VERSION=0.32
|
2017-11-12 03:34:40 +00:00
|
|
|
export MORE_HEADERS_VERSION=0.33
|
2019-05-26 02:02:47 +00:00
|
|
|
export NGINX_DIGEST_AUTH=cd8641886c873cf543255aeda20d23e4cd603d05
|
2017-01-31 18:19:58 +00:00
|
|
|
export NGINX_SUBSTITUTIONS=bc58cb11844bc42735bbaef7085ea86ace46d05b
|
2019-02-09 21:48:10 +00:00
|
|
|
export NGINX_OPENTRACING_VERSION=0.8.0
|
|
|
|
export OPENTRACING_CPP_VERSION=1.5.1
|
2018-08-17 15:23:24 +00:00
|
|
|
export ZIPKIN_CPP_VERSION=0.5.2
|
2019-02-09 21:48:10 +00:00
|
|
|
export JAEGER_VERSION=cdfaf5bb25ff5f8ec179fd548e6c7c2ade9a6a09
|
2019-02-15 20:11:50 +00:00
|
|
|
export MSGPACK_VERSION=3.1.1
|
|
|
|
export DATADOG_CPP_VERSION=0.4.2
|
2019-06-04 16:13:40 +00:00
|
|
|
export MODSECURITY_VERSION=d7101e13685efd7e7c9f808871b202656a969f4b
|
|
|
|
export MODSECURITY_LIB_VERSION=3.0.3
|
|
|
|
export OWASP_MODSECURITY_CRS_VERSION=3.1.0
|
2019-02-20 12:49:11 +00:00
|
|
|
export LUA_BRIDGE_TRACER_VERSION=0.1.0
|
2019-05-26 02:02:47 +00:00
|
|
|
export LUA_NGX_VERSION=0.10.15
|
|
|
|
export LUA_STREAM_NGX_VERSION=0.0.7
|
2018-03-03 16:38:02 +00:00
|
|
|
export LUA_UPSTREAM_VERSION=0.07
|
2019-05-26 02:02:47 +00:00
|
|
|
export NGINX_INFLUXDB_VERSION=5b09391cb7b9a889687c0aa67964c06a2d933e8b
|
2018-10-28 20:26:31 +00:00
|
|
|
export GEOIP2_VERSION=3.2
|
2018-08-04 12:02:20 +00:00
|
|
|
export NGINX_AJP_VERSION=bf6cd93f2098b59260de8d494f0f4b1f11a84627
|
2019-05-26 02:02:47 +00:00
|
|
|
export LUAJIT_VERSION=2.1-20190507
|
2017-01-31 18:19:58 +00:00
|
|
|
|
|
|
|
export BUILD_PATH=/tmp/build
|
|
|
|
|
2017-11-12 03:34:40 +00:00
|
|
|
ARCH=$(uname -m)
|
2017-04-11 13:49:15 +00:00
|
|
|
|
2017-01-31 18:19:58 +00:00
|
|
|
get_src()
|
|
|
|
{
|
|
|
|
hash="$1"
|
|
|
|
url="$2"
|
|
|
|
f=$(basename "$url")
|
|
|
|
|
2019-02-20 13:09:25 +00:00
|
|
|
echo "Downloading $url"
|
|
|
|
|
2017-01-31 18:19:58 +00:00
|
|
|
curl -sSL "$url" -o "$f"
|
|
|
|
echo "$hash $f" | sha256sum -c - || exit 10
|
|
|
|
tar xzf "$f"
|
|
|
|
rm -rf "$f"
|
|
|
|
}
|
|
|
|
|
2017-12-26 23:05:23 +00:00
|
|
|
apt-get update && apt-get dist-upgrade -y
|
|
|
|
|
2017-01-31 18:19:58 +00:00
|
|
|
# install required packages to build
|
2017-11-12 03:34:40 +00:00
|
|
|
clean-install \
|
2017-01-31 18:19:58 +00:00
|
|
|
bash \
|
|
|
|
build-essential \
|
|
|
|
curl ca-certificates \
|
|
|
|
libgeoip1 \
|
|
|
|
libgeoip-dev \
|
|
|
|
patch \
|
|
|
|
libpcre3 \
|
|
|
|
libpcre3-dev \
|
2018-01-17 11:55:05 +00:00
|
|
|
libssl-dev \
|
2017-01-31 18:19:58 +00:00
|
|
|
zlib1g \
|
|
|
|
zlib1g-dev \
|
|
|
|
libaio1 \
|
|
|
|
libaio-dev \
|
|
|
|
openssl \
|
2017-09-17 21:30:44 +00:00
|
|
|
libperl-dev \
|
|
|
|
cmake \
|
2017-10-08 13:57:29 +00:00
|
|
|
util-linux \
|
2017-12-26 23:05:23 +00:00
|
|
|
lua5.1 liblua5.1-0 liblua5.1-dev \
|
|
|
|
lmdb-utils \
|
2017-10-08 13:57:29 +00:00
|
|
|
wget \
|
2017-09-17 21:30:44 +00:00
|
|
|
libcurl4-openssl-dev \
|
2018-07-21 22:12:29 +00:00
|
|
|
libprotobuf-dev protobuf-compiler \
|
|
|
|
libz-dev \
|
2017-10-10 18:16:15 +00:00
|
|
|
procps \
|
2017-12-26 23:05:23 +00:00
|
|
|
git g++ pkgconf flex bison doxygen libyajl-dev liblmdb-dev libtool dh-autoreconf libxml2 libpcre++-dev libxml2-dev \
|
2018-06-04 20:35:09 +00:00
|
|
|
lua-cjson \
|
2018-04-06 21:08:25 +00:00
|
|
|
python \
|
2018-04-07 10:49:21 +00:00
|
|
|
luarocks \
|
2018-05-22 22:06:24 +00:00
|
|
|
libmaxminddb-dev \
|
2018-08-04 12:02:20 +00:00
|
|
|
dumb-init \
|
2018-08-14 13:32:26 +00:00
|
|
|
gdb \
|
2018-10-29 12:20:35 +00:00
|
|
|
bc \
|
2017-11-12 03:34:40 +00:00
|
|
|
|| exit 1
|
2017-01-31 18:19:58 +00:00
|
|
|
|
2018-06-04 20:35:09 +00:00
|
|
|
if [[ ${ARCH} == "x86_64" ]]; then
|
|
|
|
ln -s /usr/lib/x86_64-linux-gnu/liblua5.1.so /usr/lib/liblua.so
|
2018-05-22 22:06:24 +00:00
|
|
|
ln -s /usr/lib/x86_64-linux-gnu /usr/lib/lua-platform-path
|
2018-06-04 20:35:09 +00:00
|
|
|
fi
|
2017-12-26 23:05:23 +00:00
|
|
|
|
2018-06-04 20:35:09 +00:00
|
|
|
if [[ ${ARCH} == "aarch64" ]]; then
|
|
|
|
ln -s /usr/lib/aarch64-linux-gnu/liblua5.1.so /usr/lib/liblua.so
|
2018-05-22 22:06:24 +00:00
|
|
|
ln -s /usr/lib/aarch64-linux-gnu /usr/lib/lua-platform-path
|
2018-06-04 20:35:09 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -p /etc/nginx
|
|
|
|
|
2018-02-17 20:24:50 +00:00
|
|
|
# Get the GeoIP data
|
|
|
|
GEOIP_FOLDER=/etc/nginx/geoip
|
|
|
|
mkdir -p $GEOIP_FOLDER
|
2019-01-04 02:09:56 +00:00
|
|
|
|
2018-10-28 20:27:18 +00:00
|
|
|
function geoip2_get {
|
|
|
|
wget -O $GEOIP_FOLDER/$1.tar.gz $2 || { echo "Could not download $1, exiting." ; exit 1; }
|
2019-01-04 02:09:56 +00:00
|
|
|
mkdir $GEOIP_FOLDER/$1 \
|
|
|
|
&& tar xf $GEOIP_FOLDER/$1.tar.gz -C $GEOIP_FOLDER/$1 --strip-components 1 \
|
|
|
|
&& mv $GEOIP_FOLDER/$1/$1.mmdb $GEOIP_FOLDER/$1.mmdb \
|
|
|
|
&& rm -rf $GEOIP_FOLDER/$1 \
|
|
|
|
&& rm -rf $GEOIP_FOLDER/$1.tar.gz
|
2018-10-28 20:27:18 +00:00
|
|
|
}
|
2018-07-30 21:33:36 +00:00
|
|
|
|
2018-10-28 20:27:18 +00:00
|
|
|
geoip2_get "GeoLite2-City" "http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz"
|
|
|
|
geoip2_get "GeoLite2-ASN" "http://geolite.maxmind.com/download/geoip/database/GeoLite2-ASN.tar.gz"
|
2017-09-17 21:30:44 +00:00
|
|
|
|
2017-11-12 03:34:40 +00:00
|
|
|
mkdir --verbose -p "$BUILD_PATH"
|
|
|
|
cd "$BUILD_PATH"
|
|
|
|
|
2017-01-31 18:19:58 +00:00
|
|
|
# download, verify and extract the source files
|
2019-05-26 02:02:47 +00:00
|
|
|
get_src e21b5d06cd53e86afb94f0b3678e0abb0c0f011433471fa3d895cefa65ae0fab \
|
2018-11-04 23:59:16 +00:00
|
|
|
"https://nginx.org/download/nginx-$NGINX_VERSION.tar.gz"
|
2017-01-31 18:19:58 +00:00
|
|
|
|
2018-06-16 18:15:31 +00:00
|
|
|
get_src 49f50d4cd62b166bc1aaf712febec5e028d9f187cedbc27a610dfd01bdde2d36 \
|
2017-01-31 18:19:58 +00:00
|
|
|
"https://github.com/simpl/ngx_devel_kit/archive/v$NDK_VERSION.tar.gz"
|
|
|
|
|
2018-07-21 22:12:29 +00:00
|
|
|
get_src f1ad2459c4ee6a61771aa84f77871f4bfe42943a4aa4c30c62ba3f981f52c201 \
|
2017-01-31 18:19:58 +00:00
|
|
|
"https://github.com/openresty/set-misc-nginx-module/archive/v$SETMISC_VERSION.tar.gz"
|
|
|
|
|
2017-11-12 03:34:40 +00:00
|
|
|
get_src a3dcbab117a9c103bc1ea5200fc00a7b7d2af97ff7fd525f16f8ac2632e30fbf \
|
2017-01-31 18:19:58 +00:00
|
|
|
"https://github.com/openresty/headers-more-nginx-module/archive/v$MORE_HEADERS_VERSION.tar.gz"
|
|
|
|
|
2019-05-26 02:02:47 +00:00
|
|
|
get_src fe683831f832aae4737de1e1026a4454017c2d5f98cb88b08c5411dc380062f8 \
|
2017-01-31 18:19:58 +00:00
|
|
|
"https://github.com/atomx/nginx-http-auth-digest/archive/$NGINX_DIGEST_AUTH.tar.gz"
|
|
|
|
|
2017-09-12 13:31:55 +00:00
|
|
|
get_src 618551948ab14cac51d6e4ad00452312c7b09938f59ebff4f93875013be31f2d \
|
2017-01-31 18:19:58 +00:00
|
|
|
"https://github.com/yaoweibin/ngx_http_substitutions_filter_module/archive/$NGINX_SUBSTITUTIONS.tar.gz"
|
|
|
|
|
2019-02-09 21:48:10 +00:00
|
|
|
get_src b2159297814d5df153cf45f355bcd8ffdb71f2468e8149ad549d4f9c0cdc81ad \
|
|
|
|
"https://github.com/opentracing-contrib/nginx-opentracing/archive/v$NGINX_OPENTRACING_VERSION.tar.gz"
|
2017-09-17 21:30:44 +00:00
|
|
|
|
2019-02-09 21:48:10 +00:00
|
|
|
get_src 015c4187f7a6426a2b5196f0ccd982aa87f010cf61f507ae3ce5c90523f92301 \
|
2017-10-24 20:49:30 +00:00
|
|
|
"https://github.com/opentracing/opentracing-cpp/archive/v$OPENTRACING_CPP_VERSION.tar.gz"
|
2017-09-17 21:30:44 +00:00
|
|
|
|
2018-08-17 15:23:24 +00:00
|
|
|
get_src 30affaf0f3a84193f7127cc0135da91773ce45d902414082273dae78914f73df \
|
2017-10-24 20:49:30 +00:00
|
|
|
"https://github.com/rnburn/zipkin-cpp-opentracing/archive/v$ZIPKIN_CPP_VERSION.tar.gz"
|
2017-09-17 21:30:44 +00:00
|
|
|
|
2019-06-04 16:13:40 +00:00
|
|
|
get_src 5c8d25e68fb852f61489b669aebb7bd8ca8c88ebb5e5f969212fcceff3ee2d0b \
|
2018-07-06 00:12:57 +00:00
|
|
|
"https://github.com/SpiderLabs/ModSecurity-nginx/archive/$MODSECURITY_VERSION.tar.gz"
|
2017-12-26 23:05:23 +00:00
|
|
|
|
2019-02-09 21:48:10 +00:00
|
|
|
get_src 3183450d897baa9309347c8617edc0c97c5b29ffc32bd2d12f498edf2dcbeffa \
|
2018-08-10 21:33:30 +00:00
|
|
|
"https://github.com/jaegertracing/jaeger-client-cpp/archive/$JAEGER_VERSION.tar.gz"
|
2017-01-31 18:19:58 +00:00
|
|
|
|
2019-02-15 20:11:50 +00:00
|
|
|
get_src bda49f996a73d2c6080ff0523e7b535917cd28c8a79c3a5da54fc29332d61d1e \
|
|
|
|
"https://github.com/msgpack/msgpack-c/archive/cpp-$MSGPACK_VERSION.tar.gz"
|
|
|
|
|
|
|
|
get_src a3d1c03e7af570fa64c01df259e6e9bb78637a6bd9c65c6bf7e8703e466dc22f \
|
|
|
|
"https://github.com/DataDog/dd-opentracing-cpp/archive/v$DATADOG_CPP_VERSION.tar.gz"
|
|
|
|
|
2019-02-20 12:49:11 +00:00
|
|
|
get_src c29183001e3ab48299deecd02fb84b799b6627817c9baa66e4b342ac81dd6b40\
|
|
|
|
"https://github.com/opentracing/lua-bridge-tracer/archive/v$LUA_BRIDGE_TRACER_VERSION.tar.gz"
|
|
|
|
|
2019-05-26 02:02:47 +00:00
|
|
|
get_src 7d5f3439c8df56046d0564b5857fd8a30296ab1bd6df0f048aed7afb56a0a4c2 \
|
2019-04-14 20:09:50 +00:00
|
|
|
"https://github.com/openresty/lua-nginx-module/archive/v$LUA_NGX_VERSION.tar.gz"
|
2018-03-03 16:38:02 +00:00
|
|
|
|
2019-05-26 02:02:47 +00:00
|
|
|
get_src 99c47c75c159795c9faf76bbb9fa58e5a50b75286c86565ffcec8514b1c74bf9 \
|
2018-11-04 23:59:16 +00:00
|
|
|
"https://github.com/openresty/stream-lua-nginx-module/archive/v$LUA_STREAM_NGX_VERSION.tar.gz"
|
|
|
|
|
2018-03-03 16:38:02 +00:00
|
|
|
get_src 2a69815e4ae01aa8b170941a8e1a10b6f6a9aab699dee485d58f021dd933829a \
|
|
|
|
"https://github.com/openresty/lua-upstream-nginx-module/archive/v$LUA_UPSTREAM_VERSION.tar.gz"
|
|
|
|
|
2019-04-14 20:09:50 +00:00
|
|
|
get_src 42f0384f80b6a9b4f42f91ee688baf69165d0573347e6ea84ebed95e928211d7 \
|
|
|
|
"https://github.com/openresty/lua-resty-lrucache/archive/v0.09.tar.gz"
|
2018-03-03 02:02:17 +00:00
|
|
|
|
2019-05-26 02:02:47 +00:00
|
|
|
get_src 8f5f76d2689a3f6b0782f0a009c56a65e4c7a4382be86422c9b3549fe95b0dc4 \
|
|
|
|
"https://github.com/openresty/lua-resty-core/archive/v0.1.17.tar.gz"
|
2018-03-03 02:02:17 +00:00
|
|
|
|
2019-02-09 21:48:10 +00:00
|
|
|
get_src 517db9add320250b770f2daac83a49e38e6131611f2daa5ff05c69d5705e9746 \
|
|
|
|
"https://github.com/openresty/lua-resty-lock/archive/v0.08rc1.tar.gz"
|
2018-03-08 22:00:19 +00:00
|
|
|
|
2018-04-06 21:08:25 +00:00
|
|
|
get_src 3917d506e2d692088f7b4035c589cc32634de4ea66e40fc51259fbae43c9258d \
|
|
|
|
"https://github.com/hamishforbes/lua-resty-iputils/archive/v0.3.0.tar.gz"
|
|
|
|
|
2018-04-07 10:49:21 +00:00
|
|
|
get_src 5d16e623d17d4f42cc64ea9cfb69ca960d313e12f5d828f785dd227cc483fcbd \
|
|
|
|
"https://github.com/openresty/lua-resty-upload/archive/v0.10.tar.gz"
|
|
|
|
|
2018-05-25 04:01:36 +00:00
|
|
|
get_src 4aca34f324d543754968359672dcf5f856234574ee4da360ce02c778d244572a \
|
|
|
|
"https://github.com/openresty/lua-resty-dns/archive/v0.21.tar.gz"
|
2018-04-07 10:49:21 +00:00
|
|
|
|
2018-05-25 04:01:36 +00:00
|
|
|
get_src 095615fe94e64615c4a27f4f4475b91c047cf8d10bc2dbde8d5ba6aa625fc5ab \
|
|
|
|
"https://github.com/openresty/lua-resty-string/archive/v0.11.tar.gz"
|
2018-04-07 10:49:21 +00:00
|
|
|
|
2019-02-25 06:16:43 +00:00
|
|
|
get_src 89cedd6466801bfef20499689ebb34ecf17a2e60a34cd06e13c0204ea1775588 \
|
|
|
|
"https://github.com/openresty/lua-resty-balancer/archive/v0.02rc5.tar.gz"
|
2018-04-18 02:48:23 +00:00
|
|
|
|
2018-05-10 20:25:20 +00:00
|
|
|
get_src d81b33129c6fb5203b571fa4d8394823bf473d8872c0357a1d0f14420b1483bd \
|
|
|
|
"https://github.com/cloudflare/lua-resty-cookie/archive/v0.1.0.tar.gz"
|
|
|
|
|
2019-05-26 02:02:47 +00:00
|
|
|
get_src 9b5294fb2ecb76f7e7cb12169a29b75b6a9ead2d639095e903c8db1c7d95bd3a \
|
2019-03-01 02:16:49 +00:00
|
|
|
"https://github.com/openresty/luajit2/archive/v$LUAJIT_VERSION.tar.gz"
|
2018-03-03 02:02:17 +00:00
|
|
|
|
2019-05-26 02:02:47 +00:00
|
|
|
get_src 1af5a5632dc8b00ae103d51b7bf225de3a7f0df82f5c6a401996c080106e600e \
|
2018-05-17 13:32:36 +00:00
|
|
|
"https://github.com/influxdata/nginx-influxdb-module/archive/$NGINX_INFLUXDB_VERSION.tar.gz"
|
|
|
|
|
2018-10-28 20:26:31 +00:00
|
|
|
get_src 15bd1005228cf2c869a6f09e8c41a6aaa6846e4936c473106786ae8ac860fab7 \
|
2018-07-30 21:33:36 +00:00
|
|
|
"https://github.com/leev/ngx_http_geoip2_module/archive/$GEOIP2_VERSION.tar.gz"
|
2018-03-03 02:02:17 +00:00
|
|
|
|
2018-08-04 12:02:20 +00:00
|
|
|
get_src 5f629a50ba22347c441421091da70fdc2ac14586619934534e5a0f8a1390a950 \
|
|
|
|
"https://github.com/yaoweibin/nginx_ajp_module/archive/$NGINX_AJP_VERSION.tar.gz"
|
|
|
|
|
2018-03-03 02:02:17 +00:00
|
|
|
# improve compilation times
|
|
|
|
CORES=$(($(grep -c ^processor /proc/cpuinfo) - 0))
|
|
|
|
|
|
|
|
export MAKEFLAGS=-j${CORES}
|
|
|
|
export CTEST_BUILD_FLAGS=${MAKEFLAGS}
|
|
|
|
export HUNTER_JOBS_NUMBER=${CORES}
|
2018-11-04 23:59:16 +00:00
|
|
|
export HUNTER_KEEP_PACKAGE_SOURCES=false
|
|
|
|
export HUNTER_USE_CACHE_SERVERS=true
|
2018-03-03 02:02:17 +00:00
|
|
|
|
2018-10-29 12:20:35 +00:00
|
|
|
# Install luajit from openresty fork
|
2018-10-10 12:17:01 +00:00
|
|
|
export LUAJIT_LIB=/usr/local/lib
|
2018-10-29 12:20:35 +00:00
|
|
|
export LUA_LIB_DIR="$LUAJIT_LIB/lua"
|
2018-05-31 02:30:41 +00:00
|
|
|
|
2018-12-03 20:08:43 +00:00
|
|
|
cd "$BUILD_PATH/luajit2-$LUAJIT_VERSION"
|
|
|
|
make CCDEBUG=-g
|
|
|
|
make install
|
2018-03-03 02:02:17 +00:00
|
|
|
|
2018-12-03 20:08:43 +00:00
|
|
|
export LUAJIT_INC=/usr/local/include/luajit-2.1
|
2018-03-03 02:02:17 +00:00
|
|
|
|
2018-10-10 12:17:01 +00:00
|
|
|
# Installing luarocks packages
|
2018-10-29 12:20:35 +00:00
|
|
|
if [[ ${ARCH} == "x86_64" ]]; then
|
|
|
|
export PCRE_DIR=/usr/lib/x86_64-linux-gnu
|
|
|
|
fi
|
|
|
|
|
2018-10-10 13:14:07 +00:00
|
|
|
if [[ ${ARCH} == "aarch64" ]]; then
|
|
|
|
export PCRE_DIR=/usr/lib/aarch64-linux-gnu
|
|
|
|
fi
|
|
|
|
|
2018-10-29 12:20:35 +00:00
|
|
|
cd "$BUILD_PATH"
|
|
|
|
luarocks install lrexlib-pcre 2.7.2-1 PCRE_LIBDIR=${PCRE_DIR}
|
2018-03-03 02:02:17 +00:00
|
|
|
|
2019-05-26 02:02:47 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-core-0.1.17"
|
2018-10-10 12:17:01 +00:00
|
|
|
make install
|
2017-12-26 23:05:23 +00:00
|
|
|
|
2019-04-14 20:09:50 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-lrucache-0.09"
|
2018-10-10 12:17:01 +00:00
|
|
|
make install
|
2018-03-08 22:00:19 +00:00
|
|
|
|
2019-02-09 21:48:10 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-lock-0.08rc1"
|
2018-10-10 12:17:01 +00:00
|
|
|
make install
|
2018-04-07 10:49:21 +00:00
|
|
|
|
2018-10-10 12:17:01 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-iputils-0.3.0"
|
|
|
|
make install
|
2018-04-07 10:49:21 +00:00
|
|
|
|
2018-10-10 12:17:01 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-upload-0.10"
|
|
|
|
make install
|
2018-04-07 10:49:21 +00:00
|
|
|
|
2018-10-10 12:17:01 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-dns-0.21"
|
|
|
|
make install
|
2018-04-07 10:49:21 +00:00
|
|
|
|
2018-10-10 12:17:01 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-string-0.11"
|
|
|
|
make install
|
2018-04-18 02:48:23 +00:00
|
|
|
|
2019-02-25 06:16:43 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-balancer-0.02rc5"
|
2018-10-10 12:17:01 +00:00
|
|
|
make all
|
|
|
|
make install
|
2018-05-10 20:25:20 +00:00
|
|
|
|
2018-10-10 12:17:01 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-cookie-0.1.0"
|
|
|
|
make install
|
|
|
|
|
|
|
|
# build and install lua-resty-waf with dependencies
|
|
|
|
/install_lua_resty_waf.sh
|
2018-04-06 21:08:25 +00:00
|
|
|
|
2018-09-12 00:55:35 +00:00
|
|
|
# install openresty-gdb-utils
|
|
|
|
cd /
|
|
|
|
git clone --depth=1 https://github.com/openresty/openresty-gdb-utils.git
|
|
|
|
cat > ~/.gdbinit << EOF
|
|
|
|
directory /openresty-gdb-utils
|
|
|
|
|
|
|
|
py import sys
|
|
|
|
py sys.path.append("/openresty-gdb-utils")
|
|
|
|
|
|
|
|
source luajit20.gdb
|
|
|
|
source ngx-lua.gdb
|
|
|
|
source luajit21.py
|
|
|
|
source ngx-raw-req.py
|
|
|
|
set python print-stack full
|
|
|
|
EOF
|
|
|
|
|
2017-09-17 21:30:44 +00:00
|
|
|
# build opentracing lib
|
2017-10-24 20:49:30 +00:00
|
|
|
cd "$BUILD_PATH/opentracing-cpp-$OPENTRACING_CPP_VERSION"
|
2017-09-17 21:30:44 +00:00
|
|
|
mkdir .build
|
|
|
|
cd .build
|
2018-07-21 22:12:29 +00:00
|
|
|
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release \
|
2018-08-10 21:33:30 +00:00
|
|
|
-DCMAKE_CXX_FLAGS="-fPIC" \
|
|
|
|
-DBUILD_TESTING=OFF \
|
|
|
|
-DBUILD_MOCKTRACER=OFF \
|
|
|
|
..
|
2018-07-21 22:12:29 +00:00
|
|
|
|
2017-09-17 21:30:44 +00:00
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
2018-07-05 13:01:52 +00:00
|
|
|
# build jaeger lib
|
2018-04-06 21:08:25 +00:00
|
|
|
cd "$BUILD_PATH/jaeger-client-cpp-$JAEGER_VERSION"
|
2018-07-30 21:33:36 +00:00
|
|
|
sed -i 's/-Werror/-Wno-psabi/' CMakeLists.txt
|
2018-07-21 22:12:29 +00:00
|
|
|
|
2018-07-30 21:33:36 +00:00
|
|
|
cat <<EOF > export.map
|
|
|
|
{
|
|
|
|
global:
|
|
|
|
OpenTracingMakeTracerFactory;
|
|
|
|
local: *;
|
|
|
|
};
|
2018-07-21 22:12:29 +00:00
|
|
|
EOF
|
|
|
|
|
2017-12-26 23:05:23 +00:00
|
|
|
mkdir .build
|
|
|
|
cd .build
|
2018-07-21 22:12:29 +00:00
|
|
|
|
2018-10-29 12:20:35 +00:00
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DBUILD_TESTING=OFF \
|
|
|
|
-DJAEGERTRACING_BUILD_EXAMPLES=OFF \
|
|
|
|
-DJAEGERTRACING_BUILD_CROSSDOCK=OFF \
|
|
|
|
-DJAEGERTRACING_COVERAGE=OFF \
|
|
|
|
-DJAEGERTRACING_PLUGIN=ON \
|
|
|
|
-DHUNTER_CONFIGURATION_TYPES=Release \
|
|
|
|
-DJAEGERTRACING_WITH_YAML_CPP=ON ..
|
2018-07-21 22:12:29 +00:00
|
|
|
|
2017-12-26 23:05:23 +00:00
|
|
|
make
|
2018-07-21 22:12:29 +00:00
|
|
|
make install
|
|
|
|
|
|
|
|
export HUNTER_INSTALL_DIR=$(cat _3rdParty/Hunter/install-root-dir) \
|
|
|
|
|
2018-07-05 13:01:52 +00:00
|
|
|
mv libjaegertracing_plugin.so /usr/local/lib/libjaegertracing_plugin.so
|
2017-12-26 23:05:23 +00:00
|
|
|
|
2017-09-17 21:30:44 +00:00
|
|
|
# build zipkin lib
|
2017-10-24 20:49:30 +00:00
|
|
|
cd "$BUILD_PATH/zipkin-cpp-opentracing-$ZIPKIN_CPP_VERSION"
|
2018-07-21 22:12:29 +00:00
|
|
|
|
2018-07-30 21:33:36 +00:00
|
|
|
cat <<EOF > export.map
|
|
|
|
{
|
|
|
|
global:
|
|
|
|
OpenTracingMakeTracerFactory;
|
|
|
|
local: *;
|
|
|
|
};
|
2018-07-21 22:12:29 +00:00
|
|
|
EOF
|
|
|
|
|
2017-09-17 21:30:44 +00:00
|
|
|
mkdir .build
|
|
|
|
cd .build
|
2018-07-21 22:12:29 +00:00
|
|
|
|
2018-10-29 12:20:35 +00:00
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DBUILD_SHARED_LIBS=ON \
|
|
|
|
-DBUILD_PLUGIN=ON \
|
|
|
|
-DBUILD_TESTING=OFF ..
|
2018-07-21 22:12:29 +00:00
|
|
|
|
2017-09-17 21:30:44 +00:00
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
2019-02-15 20:11:50 +00:00
|
|
|
# build msgpack lib
|
|
|
|
cd "$BUILD_PATH/msgpack-c-cpp-$MSGPACK_VERSION"
|
|
|
|
|
|
|
|
mkdir .build
|
|
|
|
cd .build
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_CXX_FLAGS="-fPIC" \
|
|
|
|
-DBUILD_SHARED_LIBS=OFF \
|
|
|
|
-DBUILD_TESTING=OFF \
|
|
|
|
-DBUILD_MOCKTRACER=OFF \
|
|
|
|
..
|
|
|
|
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
|
|
|
# build datadog lib
|
|
|
|
cd "$BUILD_PATH/dd-opentracing-cpp-$DATADOG_CPP_VERSION"
|
|
|
|
|
|
|
|
mkdir .build
|
|
|
|
cd .build
|
|
|
|
cmake ..
|
|
|
|
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
2019-02-20 12:49:11 +00:00
|
|
|
# build Lua bridge tracer
|
|
|
|
cd "$BUILD_PATH/lua-bridge-tracer-$LUA_BRIDGE_TRACER_VERSION"
|
|
|
|
mkdir .build
|
|
|
|
cd .build
|
|
|
|
cmake ..
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
2017-12-26 23:05:23 +00:00
|
|
|
# Get Brotli source and deps
|
2017-10-08 13:57:29 +00:00
|
|
|
cd "$BUILD_PATH"
|
2018-02-01 10:42:56 +00:00
|
|
|
git clone --depth=1 https://github.com/google/ngx_brotli.git
|
|
|
|
cd ngx_brotli
|
2017-12-26 23:05:23 +00:00
|
|
|
git submodule init
|
|
|
|
git submodule update
|
2017-10-08 13:57:29 +00:00
|
|
|
|
2017-12-26 23:05:23 +00:00
|
|
|
# build modsecurity library
|
|
|
|
cd "$BUILD_PATH"
|
2019-06-04 16:13:40 +00:00
|
|
|
git clone -b v$MODSECURITY_LIB_VERSION https://github.com/SpiderLabs/ModSecurity
|
2017-12-26 23:05:23 +00:00
|
|
|
cd ModSecurity/
|
|
|
|
git submodule init
|
|
|
|
git submodule update
|
|
|
|
sh build.sh
|
|
|
|
./configure --disable-doxygen-doc --disable-examples --disable-dependency-tracking
|
|
|
|
make
|
|
|
|
make install
|
2017-09-17 21:30:44 +00:00
|
|
|
|
2018-11-12 16:56:39 +00:00
|
|
|
mkdir -p /etc/nginx/modsecurity
|
|
|
|
cp modsecurity.conf-recommended /etc/nginx/modsecurity/modsecurity.conf
|
|
|
|
cp unicode.mapping /etc/nginx/modsecurity/unicode.mapping
|
2018-11-04 15:35:33 +00:00
|
|
|
|
2018-02-01 10:42:56 +00:00
|
|
|
# Download owasp modsecurity crs
|
|
|
|
cd /etc/nginx/
|
2019-06-04 16:13:40 +00:00
|
|
|
git clone -b v$OWASP_MODSECURITY_CRS_VERSION https://github.com/SpiderLabs/owasp-modsecurity-crs
|
2018-02-01 10:42:56 +00:00
|
|
|
cd owasp-modsecurity-crs
|
|
|
|
|
|
|
|
mv crs-setup.conf.example crs-setup.conf
|
|
|
|
mv rules/REQUEST-900-EXCLUSION-RULES-BEFORE-CRS.conf.example rules/REQUEST-900-EXCLUSION-RULES-BEFORE-CRS.conf
|
|
|
|
mv rules/RESPONSE-999-EXCLUSION-RULES-AFTER-CRS.conf.example rules/RESPONSE-999-EXCLUSION-RULES-AFTER-CRS.conf
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
# OWASP CRS v3 rules
|
|
|
|
echo "
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/crs-setup.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-900-EXCLUSION-RULES-BEFORE-CRS.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-901-INITIALIZATION.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-903.9001-DRUPAL-EXCLUSION-RULES.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-903.9002-WORDPRESS-EXCLUSION-RULES.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-905-COMMON-EXCEPTIONS.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-910-IP-REPUTATION.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-911-METHOD-ENFORCEMENT.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-912-DOS-PROTECTION.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-913-SCANNER-DETECTION.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-920-PROTOCOL-ENFORCEMENT.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-921-PROTOCOL-ATTACK.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-930-APPLICATION-ATTACK-LFI.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-931-APPLICATION-ATTACK-RFI.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-932-APPLICATION-ATTACK-RCE.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-933-APPLICATION-ATTACK-PHP.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-941-APPLICATION-ATTACK-XSS.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-942-APPLICATION-ATTACK-SQLI.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-943-APPLICATION-ATTACK-SESSION-FIXATION.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-949-BLOCKING-EVALUATION.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/RESPONSE-950-DATA-LEAKAGES.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/RESPONSE-951-DATA-LEAKAGES-SQL.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/RESPONSE-952-DATA-LEAKAGES-JAVA.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/RESPONSE-953-DATA-LEAKAGES-PHP.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/RESPONSE-954-DATA-LEAKAGES-IIS.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/RESPONSE-959-BLOCKING-EVALUATION.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/RESPONSE-980-CORRELATION.conf
|
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/RESPONSE-999-EXCLUSION-RULES-AFTER-CRS.conf
|
|
|
|
" > /etc/nginx/owasp-modsecurity-crs/nginx-modsecurity.conf
|
|
|
|
|
2017-01-31 18:19:58 +00:00
|
|
|
# build nginx
|
|
|
|
cd "$BUILD_PATH/nginx-$NGINX_VERSION"
|
|
|
|
|
2018-08-29 03:56:09 +00:00
|
|
|
# apply Nginx patches
|
|
|
|
patch -p1 < /patches/openresty-ssl_cert_cb_yield.patch
|
|
|
|
|
2017-04-17 06:30:34 +00:00
|
|
|
WITH_FLAGS="--with-debug \
|
2018-06-14 20:12:23 +00:00
|
|
|
--with-compat \
|
2017-04-17 06:30:34 +00:00
|
|
|
--with-pcre-jit \
|
|
|
|
--with-http_ssl_module \
|
|
|
|
--with-http_stub_status_module \
|
|
|
|
--with-http_realip_module \
|
|
|
|
--with-http_auth_request_module \
|
|
|
|
--with-http_addition_module \
|
|
|
|
--with-http_dav_module \
|
|
|
|
--with-http_geoip_module \
|
|
|
|
--with-http_gzip_static_module \
|
|
|
|
--with-http_sub_module \
|
|
|
|
--with-http_v2_module \
|
|
|
|
--with-stream \
|
|
|
|
--with-stream_ssl_module \
|
|
|
|
--with-stream_ssl_preread_module \
|
2018-01-17 17:14:11 +00:00
|
|
|
--with-threads \
|
2018-09-25 19:18:27 +00:00
|
|
|
--with-http_secure_link_module \
|
|
|
|
--with-http_gunzip_module"
|
2017-04-17 06:30:34 +00:00
|
|
|
|
2018-12-03 20:08:43 +00:00
|
|
|
if [[ ${ARCH} != "aarch64" ]]; then
|
2017-04-17 06:30:34 +00:00
|
|
|
WITH_FLAGS+=" --with-file-aio"
|
|
|
|
fi
|
|
|
|
|
2018-03-03 02:02:17 +00:00
|
|
|
# "Combining -flto with -g is currently experimental and expected to produce unexpected results."
|
|
|
|
# https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html
|
2018-07-30 21:33:36 +00:00
|
|
|
CC_OPT="-g -Og -fPIE -fstack-protector-strong \
|
|
|
|
-Wformat \
|
|
|
|
-Werror=format-security \
|
|
|
|
-Wno-deprecated-declarations \
|
|
|
|
-fno-strict-aliasing \
|
|
|
|
-D_FORTIFY_SOURCE=2 \
|
|
|
|
--param=ssp-buffer-size=4 \
|
|
|
|
-DTCP_FASTOPEN=23 \
|
|
|
|
-fPIC \
|
|
|
|
-I$HUNTER_INSTALL_DIR/include \
|
|
|
|
-Wno-cast-function-type"
|
|
|
|
|
2018-08-10 21:33:30 +00:00
|
|
|
LD_OPT="-fPIE -fPIC -pie -Wl,-z,relro -Wl,-z,now -L$HUNTER_INSTALL_DIR/lib"
|
2018-03-03 02:02:17 +00:00
|
|
|
|
2017-04-11 13:49:15 +00:00
|
|
|
if [[ ${ARCH} == "x86_64" ]]; then
|
2018-03-03 02:02:17 +00:00
|
|
|
CC_OPT+=' -m64 -mtune=native'
|
2017-04-11 13:49:15 +00:00
|
|
|
fi
|
|
|
|
|
2017-10-08 13:57:29 +00:00
|
|
|
WITH_MODULES="--add-module=$BUILD_PATH/ngx_devel_kit-$NDK_VERSION \
|
|
|
|
--add-module=$BUILD_PATH/set-misc-nginx-module-$SETMISC_VERSION \
|
|
|
|
--add-module=$BUILD_PATH/headers-more-nginx-module-$MORE_HEADERS_VERSION \
|
|
|
|
--add-module=$BUILD_PATH/nginx-http-auth-digest-$NGINX_DIGEST_AUTH \
|
|
|
|
--add-module=$BUILD_PATH/ngx_http_substitutions_filter_module-$NGINX_SUBSTITUTIONS \
|
2018-03-08 22:00:19 +00:00
|
|
|
--add-module=$BUILD_PATH/lua-nginx-module-$LUA_NGX_VERSION \
|
2018-11-04 23:59:16 +00:00
|
|
|
--add-module=$BUILD_PATH/stream-lua-nginx-module-$LUA_STREAM_NGX_VERSION \
|
2018-03-03 16:38:02 +00:00
|
|
|
--add-module=$BUILD_PATH/lua-upstream-nginx-module-$LUA_UPSTREAM_VERSION \
|
2018-05-17 13:32:36 +00:00
|
|
|
--add-module=$BUILD_PATH/nginx-influxdb-module-$NGINX_INFLUXDB_VERSION \
|
2017-10-26 02:37:37 +00:00
|
|
|
--add-dynamic-module=$BUILD_PATH/nginx-opentracing-$NGINX_OPENTRACING_VERSION/opentracing \
|
2017-12-26 23:05:23 +00:00
|
|
|
--add-dynamic-module=$BUILD_PATH/ModSecurity-nginx-$MODSECURITY_VERSION \
|
2018-05-22 22:06:24 +00:00
|
|
|
--add-dynamic-module=$BUILD_PATH/ngx_http_geoip2_module-${GEOIP2_VERSION} \
|
2018-08-04 12:02:20 +00:00
|
|
|
--add-module=$BUILD_PATH/nginx_ajp_module-${NGINX_AJP_VERSION} \
|
2017-12-26 23:05:23 +00:00
|
|
|
--add-module=$BUILD_PATH/ngx_brotli"
|
2017-11-12 03:34:40 +00:00
|
|
|
|
2017-01-31 18:19:58 +00:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr/share/nginx \
|
|
|
|
--conf-path=/etc/nginx/nginx.conf \
|
2017-10-24 20:49:30 +00:00
|
|
|
--modules-path=/etc/nginx/modules \
|
2017-01-31 18:19:58 +00:00
|
|
|
--http-log-path=/var/log/nginx/access.log \
|
|
|
|
--error-log-path=/var/log/nginx/error.log \
|
|
|
|
--lock-path=/var/lock/nginx.lock \
|
|
|
|
--pid-path=/run/nginx.pid \
|
|
|
|
--http-client-body-temp-path=/var/lib/nginx/body \
|
|
|
|
--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
|
|
|
|
--http-proxy-temp-path=/var/lib/nginx/proxy \
|
|
|
|
--http-scgi-temp-path=/var/lib/nginx/scgi \
|
|
|
|
--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
|
2017-04-17 06:30:34 +00:00
|
|
|
${WITH_FLAGS} \
|
2017-01-31 18:19:58 +00:00
|
|
|
--without-mail_pop3_module \
|
|
|
|
--without-mail_smtp_module \
|
|
|
|
--without-mail_imap_module \
|
|
|
|
--without-http_uwsgi_module \
|
|
|
|
--without-http_scgi_module \
|
2017-04-11 13:49:15 +00:00
|
|
|
--with-cc-opt="${CC_OPT}" \
|
2017-09-17 21:30:44 +00:00
|
|
|
--with-ld-opt="${LD_OPT}" \
|
2018-08-04 12:02:20 +00:00
|
|
|
--user=www-data \
|
|
|
|
--group=www-data \
|
|
|
|
${WITH_MODULES}
|
2018-10-10 12:17:01 +00:00
|
|
|
|
2018-08-04 12:02:20 +00:00
|
|
|
make || exit 1
|
|
|
|
make install || exit 1
|
2018-07-21 22:12:29 +00:00
|
|
|
|
2017-01-31 18:19:58 +00:00
|
|
|
echo "Cleaning..."
|
|
|
|
|
|
|
|
cd /
|
|
|
|
|
2018-06-21 20:57:02 +00:00
|
|
|
mv /usr/share/nginx/sbin/nginx /usr/sbin
|
|
|
|
|
2017-01-31 18:19:58 +00:00
|
|
|
apt-mark unmarkauto \
|
|
|
|
bash \
|
|
|
|
curl ca-certificates \
|
|
|
|
libgeoip1 \
|
|
|
|
libpcre3 \
|
|
|
|
zlib1g \
|
|
|
|
libaio1 \
|
2018-08-14 13:32:26 +00:00
|
|
|
gdb \
|
2017-01-31 18:19:58 +00:00
|
|
|
geoip-bin \
|
2017-10-08 13:57:29 +00:00
|
|
|
libyajl2 liblmdb0 libxml2 libpcre++ \
|
|
|
|
gzip \
|
2017-01-31 18:19:58 +00:00
|
|
|
openssl
|
|
|
|
|
|
|
|
apt-get remove -y --purge \
|
|
|
|
build-essential \
|
|
|
|
libgeoip-dev \
|
|
|
|
libpcre3-dev \
|
|
|
|
libssl-dev \
|
|
|
|
zlib1g-dev \
|
|
|
|
libaio-dev \
|
|
|
|
linux-libc-dev \
|
2017-10-08 13:57:29 +00:00
|
|
|
cmake \
|
2017-10-10 18:16:15 +00:00
|
|
|
wget \
|
2018-07-30 21:33:36 +00:00
|
|
|
patch \
|
|
|
|
protobuf-compiler \
|
2018-08-10 21:33:30 +00:00
|
|
|
python \
|
|
|
|
xz-utils \
|
2018-11-04 23:59:16 +00:00
|
|
|
bc \
|
2017-11-12 03:34:40 +00:00
|
|
|
git g++ pkgconf flex bison doxygen libyajl-dev liblmdb-dev libgeoip-dev libtool dh-autoreconf libpcre++-dev libxml2-dev
|
2017-01-31 18:19:58 +00:00
|
|
|
|
|
|
|
apt-get autoremove -y
|
|
|
|
|
|
|
|
rm -rf "$BUILD_PATH"
|
|
|
|
rm -Rf /usr/share/man /usr/share/doc
|
|
|
|
rm -rf /tmp/* /var/tmp/*
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
rm -rf /var/cache/apt/archives/*
|
2017-10-08 13:57:29 +00:00
|
|
|
rm -rf /usr/local/modsecurity/bin
|
|
|
|
rm -rf /usr/local/modsecurity/include
|
|
|
|
rm -rf /usr/local/modsecurity/lib/libmodsecurity.a
|
|
|
|
|
2018-07-30 21:33:36 +00:00
|
|
|
rm -rf /root/.cache
|
|
|
|
|
2018-04-04 15:18:17 +00:00
|
|
|
rm -rf /etc/nginx/owasp-modsecurity-crs/.git
|
|
|
|
rm -rf /etc/nginx/owasp-modsecurity-crs/util/regression-tests
|
2017-12-26 23:05:23 +00:00
|
|
|
|
|
|
|
rm -rf $HOME/.hunter
|
2018-06-21 20:57:02 +00:00
|
|
|
|
|
|
|
# update image permissions
|
|
|
|
writeDirs=( \
|
|
|
|
/etc/nginx \
|
2018-07-30 21:33:36 +00:00
|
|
|
/var/lib/nginx \
|
2018-08-04 12:02:20 +00:00
|
|
|
/var/log/nginx \
|
2018-06-21 20:57:02 +00:00
|
|
|
/opt/modsecurity/var/log \
|
|
|
|
/opt/modsecurity/var/upload \
|
|
|
|
/opt/modsecurity/var/audit \
|
|
|
|
);
|
|
|
|
|
|
|
|
for dir in "${writeDirs[@]}"; do
|
|
|
|
mkdir -p ${dir};
|
|
|
|
chown -R www-data.www-data ${dir};
|
|
|
|
done
|