Skip to content

Instantly share code, notes, and snippets.

@Yinchie
Forked from Belphemur/build_nginx.sh
Last active November 3, 2021 10:55
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save Yinchie/5f34950d7d6f8483b6e5297b443bcc37 to your computer and use it in GitHub Desktop.
Save Yinchie/5f34950d7d6f8483b6e5297b443bcc37 to your computer and use it in GitHub Desktop.
Compiling NGiNX with OpenSSL TLS1.3, Brotli, more_headers, NAXSI - Ubuntu 20.04.1 x64
#!/usr/bin/env bash
# Run as root or with sudo
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root or with sudo."
exit 1
fi
# Make script exit if a simple command fails and
# Make script print commands being executed
set -e -x
# Set names of latest versions of each package
version_pcre=pcre-8.44
version_zlib=zlib-1.2.11
version_openssl=openssl-1.1.1h
version_nginx=nginx-1.19.3
# Set checksums of latest versions
sha256_pcre=aecafd4af3bd0f3935721af77b889d9024b2e01d96b58471bd91a3063fb47728
sha256_zlib=c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1
sha256_openssl=5c9ca8774bd7b03e5784f26ae9e9e6d749c9da2438545077e6b3d755a06595d9
sha256_nginx=91e5b74fa17879d2463294e93ad8f6ffc066696ae32ad0478ffe15ba0e9e8df0
# Set OpenPGP keys used to sign downloads
opgp_pcre=45F68D54BBE23FB3039B46E59766E084FB0F43D8
opgp_zlib=5ED46A6721D365587791E2AA783FCD8E58BCAFBA
opgp_openssl=8657ABB260F056B1E5190839D9C4D26D0E604491
opgp_nginx=B0F4253373F8F6F510D42178520A9993A1C052F8
# Set URLs to the source directories
source_pcre=https://ftp.pcre.org/pub/pcre/
source_zlib=https://zlib.net/
source_openssl=https://www.openssl.org/source/
source_nginx=https://nginx.org/download/
# Set where OpenSSL and NGINX will be built
bpath=$(pwd)/build
# proc for building faster
nb_proc=$(grep -c ^processor /proc/cpuinfo)
# Make a "today" variable for use in back-up filenames later
today=$(date +"%Y-%m-%d")
# Clean out any files from previous runs of this script
rm -rf \
"$bpath" \
/etc/nginx-default
mkdir "$bpath"
# Ensure the required software to compile NGINX is installed
apt-get update && apt-get -y install \
binutils \
git \
build-essential \
curl \
dirmngr \
libtool \
libssl-dev \
autoconf \
autogen \
brotli \
cmake
# apt-get -y install libgeoip-dev libxslt-dev libpcre3 libpcre3-dev build-essential zlib1g-dev libbz2-dev libssl-dev tar unzip curl git wget autoconf python2.7 python-dev libgd-dev
# Download the source files and verify their checksums
curl -L "${source_pcre}${version_pcre}.tar.gz" -o "${bpath}/pcre.tar.gz" && \
echo "${sha256_pcre} ${bpath}/pcre.tar.gz" | sha256sum -c -
curl -L "${source_zlib}${version_zlib}.tar.gz" -o "${bpath}/zlib.tar.gz" && \
echo "${sha256_zlib} ${bpath}/zlib.tar.gz" | sha256sum -c -
curl -L "${source_openssl}${version_openssl}.tar.gz" -o "${bpath}/openssl.tar.gz" && \
echo "${sha256_openssl} ${bpath}/openssl.tar.gz" | sha256sum -c -
curl -L "${source_nginx}${version_nginx}.tar.gz" -o "${bpath}/nginx.tar.gz" && \
echo "${sha256_nginx} ${bpath}/nginx.tar.gz" | sha256sum -c -
# Download the signature files
curl -L "${source_pcre}${version_pcre}.tar.gz.sig" -o "${bpath}/pcre.tar.gz.sig"
curl -L "${source_zlib}${version_zlib}.tar.gz.asc" -o "${bpath}/zlib.tar.gz.asc"
curl -L "${source_openssl}${version_openssl}.tar.gz.asc" -o "${bpath}/openssl.tar.gz.asc"
curl -L "${source_nginx}${version_nginx}.tar.gz.asc" -o "${bpath}/nginx.tar.gz.asc"
# Verify OpenPGP signature of the source files
cd "$bpath"
GNUPGHOME="$(mktemp -d)"
export GNUPGHOME
( gpg --keyserver ipv4.pool.sks-keyservers.net --recv-keys "$opgp_pcre" "$opgp_zlib" "$opgp_openssl" "$opgp_nginx" \
|| gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$opgp_pcre" "$opgp_zlib" "$opgp_openssl" "$opgp_nginx")
gpg --batch --verify pcre.tar.gz.sig pcre.tar.gz
gpg --batch --verify zlib.tar.gz.asc zlib.tar.gz
#gpg --batch --verify openssl.tar.gz.asc openssl.tar.gz
gpg --batch --verify nginx.tar.gz.asc nginx.tar.gz
# Expand the source files
cd "$bpath"
for archive in ./*.tar.gz; do
tar -xzf "$archive"
done
# Clean up source files
rm -rf \
"$GNUPGHOME" \
"$bpath"/*.tar.*
# Rename the existing /etc/nginx directory so it's saved as a back-up
if [ -d "/etc/nginx" ]; then
mv /etc/nginx "/etc/nginx-${today}"
fi
# Create NGINX cache directories if they do not already exist
if [ ! -d "/var/cache/nginx/" ]; then
mkdir -p \
/var/cache/nginx/client_temp \
/var/cache/nginx/proxy_temp \
/var/cache/nginx/fastcgi_temp \
/var/cache/nginx/uwsgi_temp \
/var/cache/nginx/scgi_temp
fi
# Add NGINX group and user if they do not already exist
id -g nginx &>/dev/null || addgroup --system nginx
id -u nginx &>/dev/null || adduser --disabled-password --system --home /var/cache/nginx --shell /sbin/nologin --group nginx
# Test to see if our version of gcc supports __SIZEOF_INT128__
if gcc -dM -E - </dev/null | grep -q __SIZEOF_INT128__
then
ecflag="enable-ec_nistp_64_gcc_128"
else
ecflag=""
fi
cd "$bpath"
# Grab and install Brotli.
git clone https://github.com/google/brotli.git $bpath/brotli
cd $bpath/brotli
mkdir out && cd out
../configure-cmake
make && make test && make install
git clone https://github.com/bagder/libbrotli $bpath/libbrotli
cd $bpath/libbrotli
./autogen.sh
./configure
make && make install
git clone https://github.com/google/ngx_brotli $bpath/ngx_brotli
# cd $bpath/ngx_brotli
# git submodule update --init --recursive
# Grab misc modules.
git clone https://github.com/openresty/headers-more-nginx-module.git $bpath/headers-more-nginx-module
git clone https://github.com/nbs-system/naxsi.git --branch master $bpath/naxsi
git clone https://github.com/simpl/ngx_devel_kit $bpath/ngx_devel_kit
git clone https://github.com/nulab/nginx-length-hiding-filter-module $bpath/nginx-length-hiding-filter-module
cd "$bpath/$version_nginx"
# Patch nginx with improvements
wget -O- https://raw.githubusercontent.com/kn007/patch/master/nginx.patch | patch -p1
# Build NGINX, with various modules included/excluded
./configure \
--prefix=/etc/nginx \
--with-cc-opt='-g -O3 -fstack-protector-strong -fPIE -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2,-DTCP_FASTOPEN=23' \
--with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,now -Wl,--as-needed' \
--with-pcre="$bpath/$version_pcre/" \
--with-zlib="$bpath/$version_zlib/" \
--with-openssl-opt="no-weak-ssl-ciphers no-ssl3 no-shared $ecflag -DOPENSSL_NO_HEARTBEATS -fstack-protector-strong" \
--with-openssl="$bpath/$version_openssl" \
--add-module="$bpath/ngx_brotli" \
--add-module="$bpath/headers-more-nginx-module" \
--add-module="$bpath/nginx-length-hiding-filter-module" \
--sbin-path=/usr/sbin/nginx \
--modules-path=/usr/lib/nginx/modules \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/cache/nginx/client_temp \
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
--http-scgi-temp-path=/var/cache/nginx/scgi_temp \
--user=nginx \
--group=nginx \
--with-file-aio \
--with-http_auth_request_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_mp4_module \
--with-http_realip_module \
--with-http_secure_link_module \
--with-http_slice_module \
--with-http_ssl_module \
--with-http_stub_status_module \
--with-http_sub_module \
--with-http_v2_hpack_enc \
--with-http_v2_module \
--with-pcre-jit \
--with-stream \
--with-stream_ssl_module \
--with-threads \
--without-http_empty_gif_module \
--without-http_geo_module \
--without-http_split_clients_module \
--without-http_ssi_module \
--without-mail_imap_module \
--without-mail_pop3_module \
--without-mail_smtp_module
make -j $nb_proc
make install
make clean
strip -s /usr/sbin/nginx*
if [ -d "/etc/nginx-${today}" ]; then
# Rename the default /etc/nginx settings directory so it's accessible as a reference to the new NGINX defaults
mv /etc/nginx /etc/nginx-default
# Restore the previous version of /etc/nginx to /etc/nginx so the old settings are kept
mv "/etc/nginx-${today}" /etc/nginx
fi
#cp $bpath/naxsi/naxsi_config/naxsi_core.rules /etc/nginx/naxsi_core.rules
# Create NGINX systemd service file if it does not already exist
if [ ! -e "/lib/systemd/system/nginx.service" ]; then
# Control will enter here if the NGINX service doesn't exist.
file="/lib/systemd/system/nginx.service"
/bin/cat >$file <<'EOF'
[Unit]
Description=The NGINX HTTP and reverse proxy server
After=syslog.target network.target remote-fs.target nss-lookup.target
[Service]
Type=forking
PIDFile=/var/run/nginx.pid
ExecStartPre=/usr/sbin/nginx -t
ExecStart=/usr/sbin/nginx
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true
[Install]
WantedBy=multi-user.target
EOF
fi
echo "All done.";
echo "Start with sudo systemctl start nginx"
echo "or with sudo nginx"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment