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
|
|
|
|
2020-11-26 22:51:37 +00:00
|
|
|
export NGINX_VERSION=1.19.5
|
2020-07-07 16:41:12 +00:00
|
|
|
export NDK_VERSION=0.3.1
|
2019-12-24 17:42:59 +00:00
|
|
|
export SETMISC_VERSION=0.32
|
|
|
|
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
|
2020-10-28 14:24:51 +00:00
|
|
|
export NGINX_OPENTRACING_VERSION=0.10.0
|
2019-02-09 21:48:10 +00:00
|
|
|
export OPENTRACING_CPP_VERSION=1.5.1
|
2018-08-17 15:23:24 +00:00
|
|
|
export ZIPKIN_CPP_VERSION=0.5.2
|
2020-09-01 01:29:27 +00:00
|
|
|
export JAEGER_VERSION=0.4.2
|
2020-05-26 16:11:55 +00:00
|
|
|
export MSGPACK_VERSION=3.2.1
|
2020-10-01 16:56:14 +00:00
|
|
|
export DATADOG_CPP_VERSION=1.2.0
|
2020-10-28 14:24:51 +00:00
|
|
|
export MODSECURITY_VERSION=22e53aba4e3ae8c7d59a3672d6727e49246afe96
|
2020-05-30 23:03:56 +00:00
|
|
|
export MODSECURITY_LIB_VERSION=v3.0.4
|
2020-07-08 12:45:34 +00:00
|
|
|
export OWASP_MODSECURITY_CRS_VERSION=v3.3.0
|
2020-11-26 22:51:37 +00:00
|
|
|
export LUA_NGX_VERSION=0.10.19
|
|
|
|
export LUA_STREAM_NGX_VERSION=0.0.9
|
2019-12-24 17:42:59 +00:00
|
|
|
export LUA_UPSTREAM_VERSION=0.07
|
2020-07-08 00:52:35 +00:00
|
|
|
export LUA_CJSON_VERSION=2.1.0.8
|
2019-05-26 02:02:47 +00:00
|
|
|
export NGINX_INFLUXDB_VERSION=5b09391cb7b9a889687c0aa67964c06a2d933e8b
|
2019-12-24 17:42:59 +00:00
|
|
|
export GEOIP2_VERSION=3.3
|
2018-08-04 12:02:20 +00:00
|
|
|
export NGINX_AJP_VERSION=bf6cd93f2098b59260de8d494f0f4b1f11a84627
|
2020-05-28 18:09:44 +00:00
|
|
|
|
2020-10-28 14:24:51 +00:00
|
|
|
export LUAJIT_VERSION=2.1-20201027
|
2020-05-28 18:09:44 +00:00
|
|
|
|
2020-11-26 22:51:37 +00:00
|
|
|
export LUA_RESTY_BALANCER=af4508f7aa5560c7d810922c2515b557f9e5d51a
|
2020-07-08 00:52:35 +00:00
|
|
|
export LUA_RESTY_CACHE=0.10
|
2020-11-26 22:51:37 +00:00
|
|
|
export LUA_RESTY_CORE=0.1.21
|
2020-02-04 14:49:07 +00:00
|
|
|
export LUA_RESTY_COOKIE_VERSION=766ad8c15e498850ac77f5e0265f1d3f30dc4027
|
2020-05-28 18:09:44 +00:00
|
|
|
export LUA_RESTY_DNS=0.21
|
|
|
|
export LUA_RESTY_HTTP=0.15
|
|
|
|
export LUA_RESTY_LOCK=0.08
|
2020-07-08 00:52:35 +00:00
|
|
|
export LUA_RESTY_UPLOAD_VERSION=0.10
|
|
|
|
export LUA_RESTY_STRING_VERSION=0.12
|
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"
|
|
|
|
}
|
|
|
|
|
2019-12-27 22:45:05 +00:00
|
|
|
apk update
|
|
|
|
apk upgrade
|
2017-12-26 23:05:23 +00:00
|
|
|
|
2017-01-31 18:19:58 +00:00
|
|
|
# install required packages to build
|
2019-12-27 22:45:05 +00:00
|
|
|
apk add \
|
2017-01-31 18:19:58 +00:00
|
|
|
bash \
|
2019-12-27 22:45:05 +00:00
|
|
|
gcc \
|
|
|
|
clang \
|
|
|
|
libc-dev \
|
|
|
|
make \
|
|
|
|
automake \
|
|
|
|
openssl-dev \
|
|
|
|
pcre-dev \
|
|
|
|
zlib-dev \
|
|
|
|
linux-headers \
|
|
|
|
libxslt-dev \
|
|
|
|
gd-dev \
|
|
|
|
geoip-dev \
|
|
|
|
perl-dev \
|
|
|
|
libedit-dev \
|
|
|
|
mercurial \
|
|
|
|
alpine-sdk \
|
|
|
|
findutils \
|
2017-01-31 18:19:58 +00:00
|
|
|
curl ca-certificates \
|
|
|
|
patch \
|
|
|
|
libaio-dev \
|
|
|
|
openssl \
|
2017-09-17 21:30:44 +00:00
|
|
|
cmake \
|
2017-10-08 13:57:29 +00:00
|
|
|
util-linux \
|
2019-12-27 22:45:05 +00:00
|
|
|
lmdb-tools \
|
2017-10-08 13:57:29 +00:00
|
|
|
wget \
|
2019-12-27 22:45:05 +00:00
|
|
|
curl-dev \
|
|
|
|
libprotobuf \
|
2020-05-28 18:09:44 +00:00
|
|
|
git g++ pkgconf flex bison doxygen yajl-dev lmdb-dev libtool autoconf libxml2 libxml2-dev \
|
2020-05-30 23:03:56 +00:00
|
|
|
python3 \
|
2018-05-22 22:06:24 +00:00
|
|
|
libmaxminddb-dev \
|
2018-10-29 12:20:35 +00:00
|
|
|
bc \
|
2019-06-22 23:18:24 +00:00
|
|
|
unzip \
|
2020-05-28 18:09:44 +00:00
|
|
|
dos2unix \
|
2019-12-27 22:45:05 +00:00
|
|
|
yaml-cpp
|
2019-06-26 12:12:00 +00:00
|
|
|
|
2018-06-04 20:35:09 +00:00
|
|
|
mkdir -p /etc/nginx
|
|
|
|
|
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
|
2020-11-26 22:51:37 +00:00
|
|
|
get_src 5c0a46afd6c452d4443f6ec0767f4d5c3e7c499e55a60cd6542b35a61eda799c \
|
2019-12-24 17:42:59 +00:00
|
|
|
"https://nginx.org/download/nginx-$NGINX_VERSION.tar.gz"
|
|
|
|
|
2020-07-07 16:41:12 +00:00
|
|
|
get_src 0e971105e210d272a497567fa2e2c256f4e39b845a5ba80d373e26ba1abfbd85 \
|
2019-12-24 17:42:59 +00:00
|
|
|
"https://github.com/simpl/ngx_devel_kit/archive/v$NDK_VERSION.tar.gz"
|
|
|
|
|
|
|
|
get_src f1ad2459c4ee6a61771aa84f77871f4bfe42943a4aa4c30c62ba3f981f52c201 \
|
|
|
|
"https://github.com/openresty/set-misc-nginx-module/archive/v$SETMISC_VERSION.tar.gz"
|
|
|
|
|
|
|
|
get_src a3dcbab117a9c103bc1ea5200fc00a7b7d2af97ff7fd525f16f8ac2632e30fbf \
|
|
|
|
"https://github.com/openresty/headers-more-nginx-module/archive/v$MORE_HEADERS_VERSION.tar.gz"
|
2017-01-31 18:19:58 +00:00
|
|
|
|
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"
|
|
|
|
|
2020-10-28 14:24:51 +00:00
|
|
|
get_src d580efc71809cc1cd9138c1940f4f20766a0631cacf45b99c07facd93583260d \
|
2019-02-09 21:48:10 +00:00
|
|
|
"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
|
|
|
|
2020-10-28 14:24:51 +00:00
|
|
|
get_src 38f2ae43fceda683f652065e13a80b14a580ede476a4b44eb0ddd85665380360 \
|
2020-07-08 00:52:35 +00:00
|
|
|
"https://github.com/SpiderLabs/ModSecurity-nginx/archive/$MODSECURITY_VERSION.tar.gz"
|
2017-12-26 23:05:23 +00:00
|
|
|
|
2020-09-01 01:29:27 +00:00
|
|
|
get_src 21257af93a64fee42c04ca6262d292b2e4e0b7b0660c511db357b32fd42ef5d3 \
|
2020-01-13 20:44:27 +00:00
|
|
|
"https://github.com/jaegertracing/jaeger-client-cpp/archive/v$JAEGER_VERSION.tar.gz"
|
2017-01-31 18:19:58 +00:00
|
|
|
|
2020-05-26 16:11:55 +00:00
|
|
|
get_src 464f46744a6be778626d11452c4db3c2d09461080c6db42e358e21af19d542f6 \
|
2019-02-15 20:11:50 +00:00
|
|
|
"https://github.com/msgpack/msgpack-c/archive/cpp-$MSGPACK_VERSION.tar.gz"
|
|
|
|
|
2020-11-26 22:51:37 +00:00
|
|
|
get_src 242d60b97eb7459cd0c0d58083cf7f3195d46181829da45ab8b09a857bb0ed01 \
|
2019-12-24 17:42:59 +00:00
|
|
|
"https://github.com/openresty/lua-nginx-module/archive/v$LUA_NGX_VERSION.tar.gz"
|
|
|
|
|
2020-11-26 22:51:37 +00:00
|
|
|
get_src 6fcf7054f412a19c23c1ac3c0663f42f40bccc907d98c5d1657ae5cab9973ee9 \
|
2019-12-24 17:42:59 +00:00
|
|
|
"https://github.com/openresty/stream-lua-nginx-module/archive/v$LUA_STREAM_NGX_VERSION.tar.gz"
|
|
|
|
|
|
|
|
get_src 2a69815e4ae01aa8b170941a8e1a10b6f6a9aab699dee485d58f021dd933829a \
|
|
|
|
"https://github.com/openresty/lua-upstream-nginx-module/archive/v$LUA_UPSTREAM_VERSION.tar.gz"
|
|
|
|
|
2020-10-28 14:24:51 +00:00
|
|
|
get_src f74a0821b079ea1fd63dd8659064356fc3f421ff4b35c17877140d2b2841cc3b \
|
|
|
|
"https://github.com/openresty/luajit2/archive/v$LUAJIT_VERSION.tar.gz"
|
2019-12-24 17:42:59 +00:00
|
|
|
|
2020-10-01 16:56:14 +00:00
|
|
|
get_src 3e6fe45f467d653870985cc52a1c2cf81a8a2c7a7bcf7ffcfedfd305a47a1eca \
|
2019-02-15 20:11:50 +00:00
|
|
|
"https://github.com/DataDog/dd-opentracing-cpp/archive/v$DATADOG_CPP_VERSION.tar.gz"
|
|
|
|
|
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"
|
|
|
|
|
2019-12-24 17:42:59 +00:00
|
|
|
get_src 41378438c833e313a18869d0c4a72704b4835c30acaf7fd68013ab6732ff78a7 \
|
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"
|
|
|
|
|
2019-12-24 17:42:59 +00:00
|
|
|
get_src 5d16e623d17d4f42cc64ea9cfb69ca960d313e12f5d828f785dd227cc483fcbd \
|
2020-07-08 00:52:35 +00:00
|
|
|
"https://github.com/openresty/lua-resty-upload/archive/v$LUA_RESTY_UPLOAD_VERSION.tar.gz"
|
2019-12-24 17:42:59 +00:00
|
|
|
|
2020-07-08 00:52:35 +00:00
|
|
|
get_src bfd8c4b6c90aa9dcbe047ac798593a41a3f21edcb71904d50d8ac0e8c77d1132 \
|
|
|
|
"https://github.com/openresty/lua-resty-string/archive/v$LUA_RESTY_STRING_VERSION.tar.gz"
|
2019-12-24 17:42:59 +00:00
|
|
|
|
2020-11-26 22:51:37 +00:00
|
|
|
get_src a21ec0d78a5dc5856df2374890a8a58e51de866b3d5978aceb0109a094367630 \
|
|
|
|
"https://github.com/openresty/lua-resty-balancer/archive/$LUA_RESTY_BALANCER.tar.gz"
|
2019-12-24 17:42:59 +00:00
|
|
|
|
2020-11-26 22:51:37 +00:00
|
|
|
get_src a377fbce78ba10f3ed3a8b5173ea318f8cf8da9d2ab127bb1e1f263078bf7da0 \
|
2019-12-24 17:42:59 +00:00
|
|
|
"https://github.com/openresty/lua-resty-core/archive/v$LUA_RESTY_CORE.tar.gz"
|
|
|
|
|
2020-07-08 00:52:35 +00:00
|
|
|
get_src bd6bee4ccc6cf3307ab6ca0eea693a921fab9b067ba40ae12a652636da588ff7 \
|
2019-12-24 17:42:59 +00:00
|
|
|
"https://github.com/openresty/lua-cjson/archive/$LUA_CJSON_VERSION.tar.gz"
|
2019-06-25 10:58:27 +00:00
|
|
|
|
2020-02-04 14:49:07 +00:00
|
|
|
get_src f818b5cef0881e5987606f2acda0e491531a0cb0c126d8dca02e2343edf641ef \
|
|
|
|
"https://github.com/cloudflare/lua-resty-cookie/archive/$LUA_RESTY_COOKIE_VERSION.tar.gz"
|
|
|
|
|
2020-07-08 00:52:35 +00:00
|
|
|
get_src dae9fb572f04e7df0dabc228f21cdd8bbfa1ff88e682e983ef558585bc899de0 \
|
2020-05-28 18:09:44 +00:00
|
|
|
"https://github.com/openresty/lua-resty-lrucache/archive/v$LUA_RESTY_CACHE.tar.gz"
|
|
|
|
|
|
|
|
get_src 2b4683f9abe73e18ca00345c65010c9056777970907a311d6e1699f753141de2 \
|
|
|
|
"https://github.com/openresty/lua-resty-lock/archive/v$LUA_RESTY_LOCK.tar.gz"
|
|
|
|
|
|
|
|
get_src 4aca34f324d543754968359672dcf5f856234574ee4da360ce02c778d244572a \
|
|
|
|
"https://github.com/openresty/lua-resty-dns/archive/v$LUA_RESTY_DNS.tar.gz"
|
|
|
|
|
|
|
|
get_src 987d5754a366d3ccbf745d2765f82595dcff5b94ba6c755eeb6d310447996f32 \
|
|
|
|
"https://github.com/ledgetech/lua-resty-http/archive/v$LUA_RESTY_HTTP.tar.gz"
|
|
|
|
|
|
|
|
|
2018-03-03 02:02:17 +00:00
|
|
|
# improve compilation times
|
2020-11-26 22:51:37 +00:00
|
|
|
CORES=$(($(grep -c ^processor /proc/cpuinfo) - 1))
|
2018-03-03 02:02:17 +00:00
|
|
|
|
|
|
|
export MAKEFLAGS=-j${CORES}
|
|
|
|
export CTEST_BUILD_FLAGS=${MAKEFLAGS}
|
|
|
|
export HUNTER_JOBS_NUMBER=${CORES}
|
2018-11-04 23:59:16 +00:00
|
|
|
export HUNTER_USE_CACHE_SERVERS=true
|
2018-03-03 02:02:17 +00:00
|
|
|
|
2019-12-24 17:42:59 +00:00
|
|
|
# Install luajit from openresty fork
|
|
|
|
export LUAJIT_LIB=/usr/local/lib
|
|
|
|
export LUA_LIB_DIR="$LUAJIT_LIB/lua"
|
|
|
|
export LUAJIT_INC=/usr/local/include/luajit-2.1
|
|
|
|
|
|
|
|
cd "$BUILD_PATH/luajit2-$LUAJIT_VERSION"
|
|
|
|
make CCDEBUG=-g
|
|
|
|
make install
|
|
|
|
|
2020-05-28 18:09:44 +00:00
|
|
|
ln -s /usr/local/bin/luajit /usr/local/bin/lua
|
2020-11-26 22:51:37 +00:00
|
|
|
ln -s "$LUAJIT_INC" /usr/local/include/lua
|
2020-05-28 18:09:44 +00:00
|
|
|
|
2018-10-29 12:20:35 +00:00
|
|
|
cd "$BUILD_PATH"
|
2018-03-03 02:02:17 +00:00
|
|
|
|
2020-05-28 18:09:44 +00:00
|
|
|
# Git tuning
|
|
|
|
git config --global --add core.compression -1
|
|
|
|
|
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
|
|
|
|
2020-09-01 01:29:27 +00:00
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DBUILD_TESTING=OFF \
|
|
|
|
-DWITH_BOOST_STATIC=ON \
|
|
|
|
-DBUILD_SHARED_LIBS=OFF \
|
|
|
|
-DBUILD_MOCKTRACER=OFF \
|
|
|
|
-DBUILD_STATIC_LIBS=ON \
|
|
|
|
-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true \
|
|
|
|
..
|
2018-07-21 22:12:29 +00:00
|
|
|
|
2017-09-17 21:30:44 +00:00
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
2020-07-15 15:18:26 +00:00
|
|
|
# build jaeger lib
|
|
|
|
cd "$BUILD_PATH/jaeger-client-cpp-$JAEGER_VERSION"
|
|
|
|
sed -i 's/-Werror/-Wno-psabi/' CMakeLists.txt
|
2018-07-21 22:12:29 +00:00
|
|
|
|
2020-09-01 01:29:27 +00:00
|
|
|
cat <<EOF > export.map
|
2018-07-30 21:33:36 +00:00
|
|
|
{
|
|
|
|
global:
|
|
|
|
OpenTracingMakeTracerFactory;
|
|
|
|
local: *;
|
|
|
|
};
|
2018-07-21 22:12:29 +00:00
|
|
|
EOF
|
|
|
|
|
2020-07-15 15:18:26 +00:00
|
|
|
mkdir .build
|
|
|
|
cd .build
|
2018-07-21 22:12:29 +00:00
|
|
|
|
2020-09-01 01:29:27 +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 \
|
|
|
|
-DBUILD_SHARED_LIBS=OFF \
|
|
|
|
-DJAEGERTRACING_WITH_YAML_CPP=ON \
|
|
|
|
-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true \
|
|
|
|
..
|
2018-07-21 22:12:29 +00:00
|
|
|
|
2020-07-15 15:18:26 +00:00
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
|
|
|
export HUNTER_INSTALL_DIR=$(cat _3rdParty/Hunter/install-root-dir) \
|
2018-07-21 22:12:29 +00:00
|
|
|
|
2020-07-15 15:18:26 +00:00
|
|
|
mv libjaegertracing_plugin.so /usr/local/lib/libjaegertracing_plugin.so
|
2018-07-21 22:12:29 +00:00
|
|
|
|
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 \
|
2020-09-01 01:29:27 +00:00
|
|
|
-DBUILD_SHARED_LIBS=OFF \
|
|
|
|
-DWITH_BOOST_STATIC=ON \
|
2018-10-29 12:20:35 +00:00
|
|
|
-DBUILD_PLUGIN=ON \
|
2020-09-01 01:29:27 +00:00
|
|
|
-DBUILD_TESTING=OFF \
|
|
|
|
-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true \
|
|
|
|
..
|
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 \
|
2020-09-01 01:29:27 +00:00
|
|
|
-DBUILD_SHARED_LIBS=OFF \
|
|
|
|
-DMSGPACK_BUILD_EXAMPLES=OFF \
|
|
|
|
-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true \
|
|
|
|
..
|
2019-02-15 20:11:50 +00:00
|
|
|
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
|
|
|
# build datadog lib
|
|
|
|
cd "$BUILD_PATH/dd-opentracing-cpp-$DATADOG_CPP_VERSION"
|
|
|
|
|
|
|
|
mkdir .build
|
|
|
|
cd .build
|
2020-09-01 01:29:27 +00:00
|
|
|
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DBUILD_TESTING=OFF \
|
|
|
|
-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true \
|
|
|
|
..
|
2019-02-15 20:11:50 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2019-12-24 17:42:59 +00:00
|
|
|
cd "$BUILD_PATH"
|
2020-05-30 23:03:56 +00:00
|
|
|
git clone --depth=1 https://github.com/ssdeep-project/ssdeep
|
2019-12-24 17:42:59 +00:00
|
|
|
cd ssdeep/
|
|
|
|
|
|
|
|
./bootstrap
|
|
|
|
./configure
|
|
|
|
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
2017-12-26 23:05:23 +00:00
|
|
|
# build modsecurity library
|
|
|
|
cd "$BUILD_PATH"
|
2020-05-30 23:03:56 +00:00
|
|
|
git clone --depth=1 -b $MODSECURITY_LIB_VERSION https://github.com/SpiderLabs/ModSecurity
|
2017-12-26 23:05:23 +00:00
|
|
|
cd ModSecurity/
|
|
|
|
git submodule init
|
|
|
|
git submodule update
|
2019-12-24 17:42:59 +00:00
|
|
|
|
2017-12-26 23:05:23 +00:00
|
|
|
sh build.sh
|
2019-12-24 17:42:59 +00:00
|
|
|
|
2020-11-26 22:51:37 +00:00
|
|
|
# https://github.com/SpiderLabs/ModSecurity/issues/1909#issuecomment-465926762
|
|
|
|
sed -i '115i LUA_CFLAGS="${LUA_CFLAGS} -DWITH_LUA_JIT_2_1"' build/lua.m4
|
|
|
|
sed -i '117i AC_SUBST(LUA_CFLAGS)' build/lua.m4
|
|
|
|
|
2019-12-24 17:42:59 +00:00
|
|
|
./configure \
|
|
|
|
--disable-doxygen-doc \
|
|
|
|
--disable-doxygen-html \
|
2020-05-28 18:09:44 +00:00
|
|
|
--disable-examples
|
2019-12-24 17:42:59 +00:00
|
|
|
|
2017-12-26 23:05:23 +00:00
|
|
|
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
|
|
|
|
2019-08-15 03:19:15 +00:00
|
|
|
# Replace serial logging with concurrent
|
|
|
|
sed -i 's|SecAuditLogType Serial|SecAuditLogType Concurrent|g' /etc/nginx/modsecurity/modsecurity.conf
|
|
|
|
|
2019-09-24 17:44:48 +00:00
|
|
|
# Concurrent logging implies the log is stored in several files
|
|
|
|
echo "SecAuditLogStorageDir /var/log/audit/" >> /etc/nginx/modsecurity/modsecurity.conf
|
2019-08-15 03:19:15 +00:00
|
|
|
|
2018-02-01 10:42:56 +00:00
|
|
|
# Download owasp modsecurity crs
|
|
|
|
cd /etc/nginx/
|
2019-06-22 23:18:24 +00:00
|
|
|
|
2020-07-08 12:45:34 +00:00
|
|
|
git clone -b $OWASP_MODSECURITY_CRS_VERSION https://github.com/coreruleset/coreruleset
|
|
|
|
mv coreruleset 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
|
2020-10-28 12:19:21 +00:00
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-934-APPLICATION-ATTACK-NODEJS.conf
|
2018-02-01 10:42:56 +00:00
|
|
|
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
|
2020-10-28 12:19:21 +00:00
|
|
|
Include /etc/nginx/owasp-modsecurity-crs/rules/REQUEST-944-APPLICATION-ATTACK-JAVA.conf
|
2018-02-01 10:42:56 +00:00
|
|
|
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
|
2019-12-24 17:42:59 +00:00
|
|
|
cd "$BUILD_PATH/nginx-$NGINX_VERSION"
|
|
|
|
|
|
|
|
# apply nginx patches
|
|
|
|
for PATCH in `ls /patches`;do
|
|
|
|
echo "Patch: $PATCH"
|
|
|
|
patch -p1 < /patches/$PATCH
|
|
|
|
done
|
2018-08-29 03:56:09 +00:00
|
|
|
|
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_geoip_module \
|
|
|
|
--with-http_gzip_static_module \
|
|
|
|
--with-http_sub_module \
|
|
|
|
--with-http_v2_module \
|
|
|
|
--with-stream \
|
|
|
|
--with-stream_ssl_module \
|
2020-06-19 22:33:07 +00:00
|
|
|
--with-stream_realip_module \
|
2017-04-17 06:30:34 +00:00
|
|
|
--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 \
|
2019-12-24 17:42:59 +00:00
|
|
|
--with-http_gunzip_module"
|
2017-04-17 06:30:34 +00:00
|
|
|
|
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 \
|
2020-09-01 01:29:27 +00:00
|
|
|
-I$HUNTER_INSTALL_DIR/include \
|
2018-07-30 21:33:36 +00:00
|
|
|
-Wno-cast-function-type"
|
|
|
|
|
2020-09-01 01:29:27 +00:00
|
|
|
LD_OPT="-fPIE -fPIC -pie -Wl,-z,relro -Wl,-z,now -L$HUNTER_INSTALL_DIR/lib"
|
2019-06-26 12:12:00 +00:00
|
|
|
|
|
|
|
if [[ ${ARCH} != "aarch64" ]]; then
|
|
|
|
WITH_FLAGS+=" --with-file-aio"
|
|
|
|
fi
|
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
|
|
|
|
|
2020-09-08 23:33:50 +00:00
|
|
|
WITH_MODULES=" \
|
|
|
|
--add-module=$BUILD_PATH/ngx_devel_kit-$NDK_VERSION \
|
2019-12-24 17:42:59 +00:00
|
|
|
--add-module=$BUILD_PATH/set-misc-nginx-module-$SETMISC_VERSION \
|
|
|
|
--add-module=$BUILD_PATH/headers-more-nginx-module-$MORE_HEADERS_VERSION \
|
2017-10-08 13:57:29 +00:00
|
|
|
--add-module=$BUILD_PATH/ngx_http_substitutions_filter_module-$NGINX_SUBSTITUTIONS \
|
2019-12-24 17:42:59 +00:00
|
|
|
--add-module=$BUILD_PATH/lua-nginx-module-$LUA_NGX_VERSION \
|
|
|
|
--add-module=$BUILD_PATH/stream-lua-nginx-module-$LUA_STREAM_NGX_VERSION \
|
|
|
|
--add-module=$BUILD_PATH/lua-upstream-nginx-module-$LUA_UPSTREAM_VERSION \
|
2020-09-08 23:33:50 +00:00
|
|
|
--add-module=$BUILD_PATH/nginx_ajp_module-${NGINX_AJP_VERSION} \
|
|
|
|
--add-dynamic-module=$BUILD_PATH/nginx-http-auth-digest-$NGINX_DIGEST_AUTH \
|
|
|
|
--add-dynamic-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} \
|
2020-09-08 23:33:50 +00:00
|
|
|
--add-dynamic-module=$BUILD_PATH/ngx_brotli"
|
2017-11-12 03:34:40 +00:00
|
|
|
|
2017-01-31 18:19:58 +00:00
|
|
|
./configure \
|
2019-12-24 17:42:59 +00:00
|
|
|
--prefix=/usr/local/nginx \
|
|
|
|
--conf-path=/etc/nginx/nginx.conf \
|
|
|
|
--modules-path=/etc/nginx/modules \
|
|
|
|
--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
|
|
|
|
2019-12-24 17:42:59 +00:00
|
|
|
make
|
2020-09-08 23:33:50 +00:00
|
|
|
make modules
|
2019-12-24 17:42:59 +00:00
|
|
|
make install
|
2018-07-21 22:12:29 +00:00
|
|
|
|
2019-12-24 17:42:59 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-core-$LUA_RESTY_CORE"
|
|
|
|
make install
|
|
|
|
|
|
|
|
cd "$BUILD_PATH/lua-resty-balancer-$LUA_RESTY_BALANCER"
|
|
|
|
make all
|
|
|
|
make install
|
|
|
|
|
2020-05-28 18:09:44 +00:00
|
|
|
export LUA_INCLUDE_DIR=/usr/local/include/luajit-2.1
|
|
|
|
ln -s $LUA_INCLUDE_DIR /usr/include/lua5.1
|
|
|
|
|
2019-12-24 17:42:59 +00:00
|
|
|
cd "$BUILD_PATH/lua-cjson-$LUA_CJSON_VERSION"
|
|
|
|
make all
|
|
|
|
make install
|
|
|
|
|
2020-02-04 14:49:07 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-cookie-$LUA_RESTY_COOKIE_VERSION"
|
|
|
|
make all
|
|
|
|
make install
|
|
|
|
|
2020-05-28 18:09:44 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-lrucache-$LUA_RESTY_CACHE"
|
|
|
|
make install
|
|
|
|
|
|
|
|
cd "$BUILD_PATH/lua-resty-dns-$LUA_RESTY_DNS"
|
|
|
|
make install
|
|
|
|
|
|
|
|
cd "$BUILD_PATH/lua-resty-lock-$LUA_RESTY_LOCK"
|
|
|
|
make install
|
2019-06-22 23:18:24 +00:00
|
|
|
|
2019-12-24 17:42:59 +00:00
|
|
|
# required for OCSP verification
|
2020-05-28 18:09:44 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-http-$LUA_RESTY_HTTP"
|
|
|
|
make install
|
2019-06-25 10:58:27 +00:00
|
|
|
|
2020-07-08 00:52:35 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-upload-$LUA_RESTY_UPLOAD_VERSION"
|
2019-12-24 17:42:59 +00:00
|
|
|
make install
|
|
|
|
|
2020-07-08 00:52:35 +00:00
|
|
|
cd "$BUILD_PATH/lua-resty-string-$LUA_RESTY_STRING_VERSION"
|
2019-06-25 10:58:27 +00:00
|
|
|
make install
|
|
|
|
|
2019-08-15 03:19:15 +00:00
|
|
|
# mimalloc
|
|
|
|
cd "$BUILD_PATH"
|
2020-10-28 14:24:51 +00:00
|
|
|
git clone --depth=1 -b v1.6.7 https://github.com/microsoft/mimalloc
|
2019-08-15 03:19:15 +00:00
|
|
|
cd mimalloc
|
2020-04-22 00:28:06 +00:00
|
|
|
|
2019-08-15 03:19:15 +00:00
|
|
|
mkdir -p out/release
|
|
|
|
cd out/release
|
2020-09-01 01:29:27 +00:00
|
|
|
|
2019-08-15 03:19:15 +00:00
|
|
|
cmake ../..
|
2020-09-01 01:29:27 +00:00
|
|
|
|
2019-08-15 03:19:15 +00:00
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
2018-06-21 20:57:02 +00:00
|
|
|
# update image permissions
|
|
|
|
writeDirs=( \
|
|
|
|
/etc/nginx \
|
2019-12-24 17:42:59 +00:00
|
|
|
/usr/local/nginx \
|
2018-06-21 20:57:02 +00:00
|
|
|
/opt/modsecurity/var/log \
|
|
|
|
/opt/modsecurity/var/upload \
|
|
|
|
/opt/modsecurity/var/audit \
|
2019-09-24 17:44:48 +00:00
|
|
|
/var/log/audit \
|
2019-12-24 17:42:59 +00:00
|
|
|
/var/log/nginx \
|
2018-06-21 20:57:02 +00:00
|
|
|
);
|
|
|
|
|
2019-12-27 22:45:05 +00:00
|
|
|
addgroup -Sg 101 www-data
|
|
|
|
adduser -S -D -H -u 101 -h /usr/local/nginx -s /sbin/nologin -G www-data -g www-data www-data
|
|
|
|
|
2018-06-21 20:57:02 +00:00
|
|
|
for dir in "${writeDirs[@]}"; do
|
|
|
|
mkdir -p ${dir};
|
|
|
|
chown -R www-data.www-data ${dir};
|
|
|
|
done
|
2019-12-24 17:42:59 +00:00
|
|
|
|
|
|
|
rm -rf /etc/nginx/owasp-modsecurity-crs/.git
|
|
|
|
rm -rf /etc/nginx/owasp-modsecurity-crs/util/regression-tests
|
2020-08-12 03:15:57 +00:00
|
|
|
|
|
|
|
# remove .a files
|
|
|
|
find /usr/local -name "*.a" -print | xargs /bin/rm
|