-
-
Notifications
You must be signed in to change notification settings - Fork 237
/
nginx-autoinstall.sh
executable file
·919 lines (820 loc) · 28.9 KB
/
nginx-autoinstall.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
#!/bin/bash
# shellcheck disable=SC1090,SC2086,SC2034,SC1091,SC2027,SC2206,SC2002
if [[ $EUID -ne 0 ]]; then
echo -e "Sorry, you need to run this as root"
exit 1
fi
# Define versions
NGINX_MAINLINE_VER=${NGINX_MAINLINE_VER:-1.21.6}
NGINX_STABLE_VER=${NGINX_STABLE_VER:-1.22.0}
LIBRESSL_VER=${LIBRESSL_VER:-3.3.1}
OPENSSL_VER=${OPENSSL_VER:-1.1.1l}
NPS_VER=${NPS_VER:-1.13.35.2}
HEADERMOD_VER=${HEADERMOD_VER:-0.33}
LIBMAXMINDDB_VER=${LIBMAXMINDDB_VER:-1.4.3}
GEOIP2_VER=${GEOIP2_VER:-3.3}
LUA_JIT_VER=${LUA_JIT_VER:-2.1-20220310}
LUA_NGINX_VER=${LUA_NGINX_VER:-0.10.21rc2}
LUA_RESTYCORE_VER=${LUA_RESTYCORE_VER:-0.1.23rc1}
LUA_RESTYLRUCACHE_VER=${LUA_RESTYLRUCACHE_VER:-0.11}
NGINX_DEV_KIT=${NGINX_DEV_KIT:-0.3.1}
HTTPREDIS_VER=${HTTPREDIS_VER:-0.3.9}
NGXECHO_VER=${NGXECHO_VER:-0.62}
# Define options
NGINX_OPTIONS=${NGINX_OPTIONS:-"
--prefix=/etc/nginx \
--sbin-path=/usr/sbin/nginx \
--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 \
--user=nginx \
--group=nginx \
--with-cc-opt=-Wno-deprecated-declarations \
--with-cc-opt=-Wno-ignored-qualifiers"}
# Define modules
NGINX_MODULES=${NGINX_MODULES:-"--with-threads \
--with-file-aio \
--with-http_ssl_module \
--with-http_v2_module \
--with-http_mp4_module \
--with-http_auth_request_module \
--with-http_slice_module \
--with-http_stub_status_module \
--with-http_realip_module \
--with-http_sub_module"}
# Define installation parameters for headless install (fallback if unspecifed)
if [[ $HEADLESS == "y" ]]; then
# Define options
OPTION=${OPTION:-1}
NGINX_VER=${NGINX_VER:-1}
PAGESPEED=${PAGESPEED:-n}
BROTLI=${BROTLI:-n}
HEADERMOD=${HEADERMOD:-n}
GEOIP=${GEOIP:-n}
GEOIP2_ACCOUNT_ID=${GEOIP2_ACCOUNT_ID:-}
GEOIP2_LICENSE_KEY=${GEOIP2_LICENSE_KEY:-}
FANCYINDEX=${FANCYINDEX:-n}
CACHEPURGE=${CACHEPURGE:-n}
SUBFILTER=${SUBFILTER:-n}
LUA=${LUA:-n}
WEBDAV=${WEBDAV:-n}
VTS=${VTS:-n}
RTMP=${RTMP:-n}
TESTCOOKIE=${TESTCOOKIE:-n}
HTTP3=${HTTP3:-n}
MODSEC=${MODSEC:-n}
REDIS2=${REDIS2:-n}
HTTPREDIS=${HTTPREDIS:-n}
SRCACHE=${SRCACHE:-n}
SETMISC=${SETMISC:-n}
NGXECHO=${NGXECHO:-n}
HPACK=${HPACK:-n}
SSL=${SSL:-1}
RM_CONF=${RM_CONF:-y}
RM_LOGS=${RM_LOGS:-y}
fi
# Clean screen before launching menu
if [[ $HEADLESS == "n" ]]; then
clear
fi
if [[ $HEADLESS != "y" ]]; then
echo ""
echo "Welcome to the nginx-autoinstall script."
echo ""
echo "What do you want to do?"
echo " 1) Install or update Nginx"
echo " 2) Uninstall Nginx"
echo " 3) Update the script"
echo " 4) Install Bad Bot Blocker"
echo " 5) Exit"
echo ""
while [[ $OPTION != "1" && $OPTION != "2" && $OPTION != "3" && $OPTION != "4" && $OPTION != "5" ]]; do
read -rp "Select an option [1-5]: " OPTION
done
fi
case $OPTION in
1)
if [[ $HEADLESS != "y" ]]; then
echo ""
echo "This script will install Nginx with some optional modules."
echo ""
echo "Do you want to install Nginx stable or mainline?"
echo " 1) Stable $NGINX_STABLE_VER"
echo " 2) Mainline $NGINX_MAINLINE_VER"
echo ""
while [[ $NGINX_VER != "1" && $NGINX_VER != "2" && $NGINX_VER != "STABLE" && $NGINX_VER != "MAINLINE" ]]; do
read -rp "Select an option [1-2]: " -e -i 1 NGINX_VER
done
fi
case $NGINX_VER in
1 | STABLE)
NGINX_VER=$NGINX_STABLE_VER
;;
2 | MAINLINE)
NGINX_VER=$NGINX_MAINLINE_VER
;;
*)
echo "NGINX_VER unspecified, fallback to stable $NGINX_STABLE_VER"
NGINX_VER=$NGINX_STABLE_VER
;;
esac
if [[ $HEADLESS != "y" ]]; then
echo ""
echo "Please tell me which modules you want to install."
echo "If you select none, Nginx will be installed with its default modules."
echo ""
echo "Modules to install :"
while [[ $HTTP3 != "y" && $HTTP3 != "n" ]]; do
read -rp " HTTP/3 (⚠️ Patch by Cloudflare, will install BoringSSL, Quiche, Rust and Go) [y/n]: " -e -i n HTTP3
done
while [[ $TLSDYN != "y" && $TLSDYN != "n" ]]; do
read -rp " Cloudflare's TLS Dynamic Record Resizing patch [y/n]: " -e -i n TLSDYN
done
while [[ $HPACK != "y" && $HPACK != "n" ]]; do
read -rp " Cloudflare's full HPACK encoding patch [y/n]: " -e -i n HPACK
done
while [[ $PAGESPEED != "y" && $PAGESPEED != "n" ]]; do
read -rp " PageSpeed $NPS_VER [y/n]: " -e -i n PAGESPEED
done
while [[ $BROTLI != "y" && $BROTLI != "n" ]]; do
read -rp " Brotli [y/n]: " -e -i n BROTLI
done
while [[ $HEADERMOD != "y" && $HEADERMOD != "n" ]]; do
read -rp " Headers More $HEADERMOD_VER [y/n]: " -e -i n HEADERMOD
done
while [[ $GEOIP != "y" && $GEOIP != "n" ]]; do
read -rp " GeoIP [y/n]: " -e -i n GEOIP
done
while [[ $FANCYINDEX != "y" && $FANCYINDEX != "n" ]]; do
read -rp " Fancy index [y/n]: " -e -i n FANCYINDEX
done
while [[ $CACHEPURGE != "y" && $CACHEPURGE != "n" ]]; do
read -rp " ngx_cache_purge [y/n]: " -e -i n CACHEPURGE
done
while [[ $SUBFILTER != "y" && $SUBFILTER != "n" ]]; do
read -rp " nginx_substitutions_filter [y/n]: " -e -i n SUBFILTER
done
while [[ $LUA != "y" && $LUA != "n" ]]; do
read -rp " ngx_http_lua_module [y/n]: " -e -i n LUA
done
while [[ $WEBDAV != "y" && $WEBDAV != "n" ]]; do
read -rp " nginx WebDAV [y/n]: " -e -i n WEBDAV
done
while [[ $VTS != "y" && $VTS != "n" ]]; do
read -rp " nginx VTS [y/n]: " -e -i n VTS
done
while [[ $RTMP != "y" && $RTMP != "n" ]]; do
read -rp " nginx RTMP [y/n]: " -e -i n RTMP
done
while [[ $TESTCOOKIE != "y" && $TESTCOOKIE != "n" ]]; do
read -rp " nginx testcookie [y/n]: " -e -i n TESTCOOKIE
done
while [[ $MODSEC != "y" && $MODSEC != "n" ]]; do
read -rp " nginx ModSecurity [y/n]: " -e -i n MODSEC
done
if [[ $MODSEC == 'y' ]]; then
read -rp " Enable nginx ModSecurity? [y/n]: " -e -i n MODSEC_ENABLE
fi
while [[ $REDIS2 != "y" && $REDIS2 != "n" ]]; do
read -rp " redis2-nginx-module [y/n]: " -e -i n REDIS2
done
while [[ $HTTPREDIS != "y" && $HTTPREDIS != "n" ]]; do
read -rp " HttpRedisModule [y/n]: " -e -i n HTTPREDIS
done
while [[ $SRCACHE != "y" && $SRCACHE != "n" ]]; do
read -rp " srcache-nginx-module [y/n]: " -e -i n SRCACHE
done
while [[ $SETMISC != "y" && $SETMISC != "n" ]]; do
read -rp " set-misc-nginx-module [y/n]: " -e -i n SETMISC
done
while [[ $NGXECHO != "y" && $NGXECHO != "n" ]]; do
read -rp " echo-nginx-module [y/n]: " -e -i n NGXECHO
done
if [[ $GEOIP = 'y' ]]; then
# - Ask for a Maxmind user id and license key if headless=n
read -rp " Enter your Maxmind account id: " -e GEOIP2_ACCOUNT_ID
read -rp " Enter your Maxmind license key: " -e GEOIP2_LICENSE_KEY
fi
if [[ $HTTP3 != 'y' ]]; then
echo ""
echo "Choose your OpenSSL implementation:"
echo " 1) System's OpenSSL ($(openssl version | cut -c9-14))"
echo " 2) OpenSSL $OPENSSL_VER from source"
echo " 3) LibreSSL $LIBRESSL_VER from source "
echo ""
while [[ $SSL != "1" && $SSL != "2" && $SSL != "3" ]]; do
read -rp "Select an option [1-3]: " -e -i 1 SSL
done
fi
fi
if [[ $HTTP3 != 'y' ]]; then
case $SSL in
1 | SYSTEM) ;;
2 | OPENSSL)
OPENSSL=y
;;
3 | LIBRESSL)
LIBRESSL=y
;;
*)
echo "SSL unspecified, fallback to system's OpenSSL ($(openssl version | cut -c9-14))"
;;
esac
fi
if [[ $HEADLESS != "y" ]]; then
echo ""
read -n1 -r -p "Nginx is ready to be installed, press any key to continue..."
echo ""
fi
# Cleanup
# The directory should be deleted at the end of the script, but in case it fails
rm -r /usr/local/src/nginx/ >>/dev/null 2>&1
mkdir -p /usr/local/src/nginx/modules
# Dependencies
apt-get update
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
if [[ $MODSEC == 'y' ]]; then
apt-get install -y apt-utils libcurl4-openssl-dev libgeoip-dev liblmdb-dev libpcre++-dev libyajl-dev pkgconf
fi
if [[ $GEOIP == 'y' ]]; then
if grep -q "main contrib" /etc/apt/sources.list; then
echo "main contrib already in sources.list... Skipping"
else
sed -i "s/main/main contrib/g" /etc/apt/sources.list
fi
apt-get update
apt-get install -y geoipupdate
fi
# PageSpeed
if [[ $PAGESPEED == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
wget https://github.com/pagespeed/ngx_pagespeed/archive/v${NPS_VER}-stable.zip
unzip v${NPS_VER}-stable.zip
cd incubator-pagespeed-ngx-${NPS_VER}-stable || exit 1
psol_url=https://dl.google.com/dl/page-speed/psol/${NPS_VER}.tar.gz
[ -e scripts/format_binary_url.sh ] && psol_url=$(scripts/format_binary_url.sh PSOL_BINARY_URL)
wget "${psol_url}"
tar -xzvf "$(basename "${psol_url}")"
fi
#Brotli
if [[ $BROTLI == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
git clone https://github.com/google/ngx_brotli
cd ngx_brotli || exit 1
git checkout v1.0.0rc
git submodule update --init
fi
# More Headers
if [[ $HEADERMOD == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
wget https://github.com/openresty/headers-more-nginx-module/archive/v${HEADERMOD_VER}.tar.gz
tar xaf v${HEADERMOD_VER}.tar.gz
fi
# GeoIP
if [[ $GEOIP == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
# install libmaxminddb
wget https://github.com/maxmind/libmaxminddb/releases/download/${LIBMAXMINDDB_VER}/libmaxminddb-${LIBMAXMINDDB_VER}.tar.gz
tar xaf libmaxminddb-${LIBMAXMINDDB_VER}.tar.gz
cd libmaxminddb-${LIBMAXMINDDB_VER}/ || exit 1
./configure
make -j "$(nproc)"
make install
ldconfig
cd ../ || exit 1
wget https://github.com/leev/ngx_http_geoip2_module/archive/${GEOIP2_VER}.tar.gz
tar xaf ${GEOIP2_VER}.tar.gz
mkdir geoip-db
cd geoip-db || exit 1
# - Download GeoLite2 databases using license key
# - Apply the correct, dated filename inside the checksum file to each download instead of a generic filename
# - Perform all checksums
GEOIP2_URLS=( \
"https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-ASN&license_key="$GEOIP2_LICENSE_KEY"&suffix=tar.gz" \
"https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&license_key="$GEOIP2_LICENSE_KEY"&suffix=tar.gz" \
"https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-Country&license_key="$GEOIP2_LICENSE_KEY"&suffix=tar.gz" \
)
if [[ ! -d /opt/geoip ]]; then
for GEOIP2_URL in "${GEOIP2_URLS[@]}"; do
echo "=== FETCHING ==="
echo $GEOIP2_URL
wget -O sha256 "$GEOIP2_URL.sha256"
GEOIP2_FILENAME=$(cat sha256 | awk '{print $2}')
mv sha256 "$GEOIP2_FILENAME.sha256"
wget -O "$GEOIP2_FILENAME" "$GEOIP2_URL"
echo "=== CHECKSUM ==="
sha256sum -c "$GEOIP2_FILENAME.sha256"
done
tar -xf GeoLite2-ASN_*.tar.gz
tar -xf GeoLite2-City_*.tar.gz
tar -xf GeoLite2-Country_*.tar.gz
mkdir /opt/geoip
cd GeoLite2-ASN_*/ || exit 1
mv GeoLite2-ASN.mmdb /opt/geoip/
cd ../ || exit 1
cd GeoLite2-City_*/ || exit 1
mv GeoLite2-City.mmdb /opt/geoip/
cd ../ || exit 1
cd GeoLite2-Country_*/ || exit 1
mv GeoLite2-Country.mmdb /opt/geoip/
else
echo -e "GeoLite2 database files exists... Skipping download"
fi
# Download GeoIP.conf for use with geoipupdate
if [[ ! -f /usr/local/etc/GeoIP.conf ]]; then
cd /usr/local/etc || exit 1
wget https://raw.githubusercontent.com/angristan/nginx-autoinstall/master/conf/GeoIP.conf
sed -i "s/YOUR_ACCOUNT_ID_HERE/${GEOIP2_ACCOUNT_ID}/g" GeoIP.conf
sed -i "s/YOUR_LICENSE_KEY_HERE/${GEOIP2_LICENSE_KEY}/g" GeoIP.conf
else
echo -e "GeoIP.conf file exists... Skipping"
fi
if [[ ! -f /etc/cron.d/geoipupdate ]]; then
# Install crontab to run twice a week
echo -e "40 23 * * 6,3 /usr/local/bin/geoipupdate" > /etc/cron.d/geoipupdate
else
echo -e "geoipupdate crontab file exists... Skipping"
fi
fi
# Cache Purge
if [[ $CACHEPURGE == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
git clone --depth 1 https://github.com/FRiCKLE/ngx_cache_purge
fi
# Nginx Substitutions Filter
if [[ $SUBFILTER == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
git clone https://github.com/yaoweibin/ngx_http_substitutions_filter_module
fi
# Lua
if [[ $LUA == 'y' ]]; then
# LuaJIT download
cd /usr/local/src/nginx/modules || exit 1
wget https://github.com/openresty/luajit2/archive/v${LUA_JIT_VER}.tar.gz
tar xaf v${LUA_JIT_VER}.tar.gz
cd luajit2-${LUA_JIT_VER} || exit 1
make -j "$(nproc)"
make install
# ngx_devel_kit download
cd /usr/local/src/nginx/modules || exit 1
wget https://github.com/simplresty/ngx_devel_kit/archive/v${NGINX_DEV_KIT}.tar.gz
tar xaf v${NGINX_DEV_KIT}.tar.gz
# lua-nginx-module download
cd /usr/local/src/nginx/modules || exit 1
wget https://github.com/openresty/lua-nginx-module/archive/v${LUA_NGINX_VER}.tar.gz
tar xaf v${LUA_NGINX_VER}.tar.gz
# lua-resty-core download
cd /usr/local/src/nginx/modules || exit 1
wget https://github.com/openresty/lua-resty-core/archive/v${LUA_RESTYCORE_VER}.tar.gz
tar xaf v${LUA_RESTYCORE_VER}.tar.gz
cd lua-resty-core-${LUA_RESTYCORE_VER} || exit 1
make install PREFIX=/etc/nginx
# lua-resty-lrucache download
cd /usr/local/src/nginx/modules || exit 1
wget https://github.com/openresty/lua-resty-lrucache/archive/v${LUA_RESTYLRUCACHE_VER}.tar.gz
tar xaf v${LUA_RESTYLRUCACHE_VER}.tar.gz
cd lua-resty-lrucache-${LUA_RESTYLRUCACHE_VER} || exit 1
make install PREFIX=/etc/nginx
fi
# LibreSSL
if [[ $LIBRESSL == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
mkdir libressl-${LIBRESSL_VER}
cd libressl-${LIBRESSL_VER} || exit 1
wget -qO- http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${LIBRESSL_VER}.tar.gz | tar xz --strip 1
./configure \
LDFLAGS=-lrt \
CFLAGS=-fstack-protector-strong \
--prefix=/usr/local/src/nginx/modules/libressl-${LIBRESSL_VER}/.openssl/ \
--enable-shared=no
make install-strip -j "$(nproc)"
fi
# OpenSSL
if [[ $OPENSSL == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
wget https://www.openssl.org/source/openssl-${OPENSSL_VER}.tar.gz
tar xaf openssl-${OPENSSL_VER}.tar.gz
cd openssl-${OPENSSL_VER} || exit 1
./config
fi
# ModSecurity
if [[ $MODSEC == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
git clone --depth 1 -b v3/master --single-branch https://github.com/SpiderLabs/ModSecurity
cd ModSecurity || exit 1
git submodule init
git submodule update
./build.sh
./configure
make -j "$(nproc)"
make install
mkdir /etc/nginx/modsec
wget -P /etc/nginx/modsec/ https://raw.githubusercontent.com/SpiderLabs/ModSecurity/v3/master/modsecurity.conf-recommended
mv /etc/nginx/modsec/modsecurity.conf-recommended /etc/nginx/modsec/modsecurity.conf
# Enable ModSecurity in Nginx
if [[ $MODSEC_ENABLE == 'y' ]]; then
sed -i 's/SecRuleEngine DetectionOnly/SecRuleEngine On/' /etc/nginx/modsec/modsecurity.conf
fi
fi
# Download ngx_http_redis
if [[ $HTTPREDIS == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
wget https://people.freebsd.org/~osa/ngx_http_redis-${HTTPREDIS_VER}.tar.gz
tar xaf ngx_http_redis-${HTTPREDIS_VER}.tar.gz
fi
# Download ngx_devel_kit if LUA = no
if [[ $SETMISC == 'y' && $LUA == 'n' ]]; then
cd /usr/local/src/nginx/modules || exit 1
wget https://github.com/simplresty/ngx_devel_kit/archive/v${NGINX_DEV_KIT}.tar.gz
tar xaf v${NGINX_DEV_KIT}.tar.gz
fi
# Download echo-nginx-module
if [[ $NGXECHO == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
wget https://github.com/openresty/echo-nginx-module/archive/refs/tags/v${NGXECHO_VER}.tar.gz
tar xaf v${NGXECHO_VER}.tar.gz
fi
# Download and extract of Nginx source code
cd /usr/local/src/nginx/ || exit 1
wget -qO- http://nginx.org/download/nginx-${NGINX_VER}.tar.gz | tar zxf -
cd nginx-${NGINX_VER} || exit 1
# As the default nginx.conf does not work, we download a clean and working conf from my GitHub.
# We do it only if it does not already exist, so that it is not overriten if Nginx is being updated
if [[ ! -e /etc/nginx/nginx.conf ]]; then
mkdir -p /etc/nginx
cd /etc/nginx || exit 1
wget https://raw.githubusercontent.com/Angristan/nginx-autoinstall/master/conf/nginx.conf
fi
cd /usr/local/src/nginx/nginx-${NGINX_VER} || exit 1
# Optional options
if [[ $LUA == 'y' ]]; then
NGINX_OPTIONS=$(
echo " $NGINX_OPTIONS"
echo --with-ld-opt="-Wl,-rpath,/usr/local/lib/"
)
fi
# Optional modules
if [[ $LIBRESSL == 'y' ]]; then
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo --with-openssl=/usr/local/src/nginx/modules/libressl-${LIBRESSL_VER}
)
fi
if [[ $PAGESPEED == 'y' ]]; then
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo "--add-module=/usr/local/src/nginx/modules/incubator-pagespeed-ngx-${NPS_VER}-stable"
)
fi
if [[ $BROTLI == 'y' ]]; then
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo "--add-module=/usr/local/src/nginx/modules/ngx_brotli"
)
fi
if [[ $HEADERMOD == 'y' ]]; then
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo "--add-module=/usr/local/src/nginx/modules/headers-more-nginx-module-${HEADERMOD_VER}"
)
fi
if [[ $GEOIP == 'y' ]]; then
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo "--add-module=/usr/local/src/nginx/modules/ngx_http_geoip2_module-${GEOIP2_VER}"
)
fi
if [[ $OPENSSL == 'y' ]]; then
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo "--with-openssl=/usr/local/src/nginx/modules/openssl-${OPENSSL_VER}"
)
fi
if [[ $CACHEPURGE == 'y' ]]; then
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo "--add-module=/usr/local/src/nginx/modules/ngx_cache_purge"
)
fi
if [[ $SUBFILTER == 'y' ]]; then
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo "--add-module=/usr/local/src/nginx/modules/ngx_http_substitutions_filter_module"
)
fi
# Lua
if [[ $LUA == 'y' ]]; then
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo "--add-module=/usr/local/src/nginx/modules/ngx_devel_kit-${NGINX_DEV_KIT}"
)
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo "--add-module=/usr/local/src/nginx/modules/lua-nginx-module-${LUA_NGINX_VER}"
)
fi
if [[ $FANCYINDEX == 'y' ]]; then
git clone --depth 1 --quiet https://github.com/aperezdc/ngx-fancyindex.git /usr/local/src/nginx/modules/fancyindex
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo --add-module=/usr/local/src/nginx/modules/fancyindex
)
fi
if [[ $WEBDAV == 'y' ]]; then
git clone --depth 1 --quiet https://github.com/arut/nginx-dav-ext-module.git /usr/local/src/nginx/modules/nginx-dav-ext-module
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo --with-http_dav_module --add-module=/usr/local/src/nginx/modules/nginx-dav-ext-module
)
fi
if [[ $VTS == 'y' ]]; then
git clone --depth 1 --quiet https://github.com/vozlt/nginx-module-vts.git /usr/local/src/nginx/modules/nginx-module-vts
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo --add-module=/usr/local/src/nginx/modules/nginx-module-vts
)
fi
if [[ $RTMP == 'y' ]]; then
git clone --quiet https://github.com/arut/nginx-rtmp-module.git /usr/local/src/nginx/modules/nginx-rtmp-module
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo --add-module=/usr/local/src/nginx/modules/nginx-rtmp-module
)
fi
if [[ $TESTCOOKIE == 'y' ]]; then
git clone --depth 1 --quiet https://github.com/kyprizel/testcookie-nginx-module.git /usr/local/src/nginx/modules/testcookie-nginx-module
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo --add-module=/usr/local/src/nginx/modules/testcookie-nginx-module
)
fi
if [[ $MODSEC == 'y' ]]; then
git clone --depth 1 --quiet https://github.com/SpiderLabs/ModSecurity-nginx.git /usr/local/src/nginx/modules/ModSecurity-nginx
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo --add-module=/usr/local/src/nginx/modules/ModSecurity-nginx
)
fi
if [[ $REDIS2 == 'y' ]]; then
git clone --depth 1 --quiet https://github.com/openresty/redis2-nginx-module.git /usr/local/src/nginx/modules/redis2-nginx-module
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo --add-module=/usr/local/src/nginx/modules/redis2-nginx-module
)
fi
if [[ $HTTPREDIS == 'y' ]]; then
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo --add-module=/usr/local/src/nginx/modules/ngx_http_redis-${HTTPREDIS_VER}
)
fi
if [[ $SRCACHE == 'y' ]]; then
git clone --depth 1 --quiet https://github.com/openresty/srcache-nginx-module.git /usr/local/src/nginx/modules/srcache-nginx-module
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo --add-module=/usr/local/src/nginx/modules/srcache-nginx-module
)
fi
if [[ $SETMISC == 'y' ]]; then
git clone --depth 1 --quiet https://github.com/openresty/set-misc-nginx-module.git /usr/local/src/nginx/modules/set-misc-nginx-module
if [[ $LUA == 'n' ]]; then
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo --add-module=/usr/local/src/nginx/modules/ngx_devel_kit-${NGINX_DEV_KIT}
)
fi
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo --add-module=/usr/local/src/nginx/modules/set-misc-nginx-module
)
fi
if [[ $NGXECHO == 'y' ]]; then
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo --add-module=/usr/local/src/nginx/modules/echo-nginx-module-${NGXECHO_VER}
)
fi
# Cloudflare's TLS Dynamic Record Resizing patch
if [[ $TLSDYN == 'y' ]]; then
wget https://raw.githubusercontent.com/nginx-modules/ngx_http_tls_dyn_size/master/nginx__dynamic_tls_records_1.17.7%2B.patch -O tcp-tls.patch
patch -p1 <tcp-tls.patch
fi
# HTTP3
if [[ $HTTP3 == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
git clone --depth 1 --recursive https://github.com/cloudflare/quiche
# Dependencies for BoringSSL and Quiche
apt-get install -y golang
# Rust is not packaged so that's the only way...
curl -sSf https://sh.rustup.rs | sh -s -- -y
source "$HOME/.cargo/env"
cd /usr/local/src/nginx/nginx-${NGINX_VER} || exit 1
# Apply actual patch
patch -p01 </usr/local/src/nginx/modules/quiche/nginx/nginx-1.16.patch
# Apply patch for nginx > 1.19.7 (source: https://github.com/cloudflare/quiche/issues/936#issuecomment-857618081)
wget https://raw.githubusercontent.com/angristan/nginx-autoinstall/master/patches/nginx-http3-1.19.7.patch -O nginx-http3.patch
patch -p01 <nginx-http3.patch
NGINX_OPTIONS=$(
echo "$NGINX_OPTIONS"
echo --with-openssl=/usr/local/src/nginx/modules/quiche/quiche/deps/boringssl --with-quiche=/usr/local/src/nginx/modules/quiche
)
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo --with-http_v3_module
)
fi
# Cloudflare's Cloudflare's full HPACK encoding patch
if [[ $HPACK == 'y' ]]; then
if [[ $HTTP3 == 'n' ]]; then
# Working Patch from https://github.com/hakasenyang/openssl-patch/issues/2#issuecomment-413449809
wget https://raw.githubusercontent.com/hakasenyang/openssl-patch/master/nginx_hpack_push_1.15.3.patch -O nginx_http2_hpack.patch
else
# Same patch as above but fixed conflicts with the HTTP/3 patch
wget https://raw.githubusercontent.com/angristan/nginx-autoinstall/master/patches/nginx_hpack_push_with_http3.patch -O nginx_http2_hpack.patch
fi
patch -p1 <nginx_http2_hpack.patch
NGINX_OPTIONS=$(
echo "$NGINX_OPTIONS"
echo --with-http_v2_hpack_enc
)
fi
if [[ $LUA == 'y' ]]; then
export LUAJIT_LIB=/usr/local/lib/
export LUAJIT_INC=/usr/local/include/luajit-2.1/
fi
./configure $NGINX_OPTIONS $NGINX_MODULES
make -j "$(nproc)"
make install
# remove debugging symbols
strip -s /usr/sbin/nginx
# Nginx installation from source does not add an init script for systemd and logrotate
# Using the official systemd script and logrotate conf from nginx.org
if [[ ! -e /lib/systemd/system/nginx.service ]]; then
cd /lib/systemd/system/ || exit 1
wget https://raw.githubusercontent.com/Angristan/nginx-autoinstall/master/conf/nginx.service
# Enable nginx start at boot
systemctl enable nginx
fi
if [[ ! -e /etc/logrotate.d/nginx ]]; then
cd /etc/logrotate.d/ || exit 1
wget https://raw.githubusercontent.com/Angristan/nginx-autoinstall/master/conf/nginx-logrotate -O nginx
fi
# Nginx's cache directory is not created by default
if [[ ! -d /var/cache/nginx ]]; then
mkdir -p /var/cache/nginx
fi
# We add the sites-* folders as some use them.
if [[ ! -d /etc/nginx/sites-available ]]; then
mkdir -p /etc/nginx/sites-available
fi
if [[ ! -d /etc/nginx/sites-enabled ]]; then
mkdir -p /etc/nginx/sites-enabled
fi
if [[ ! -d /etc/nginx/conf.d ]]; then
mkdir -p /etc/nginx/conf.d
fi
if [[ -d /etc/nginx/conf.d && $LUA == 'y' ]]; then
# add necessary `lua_package_path` directive to `nginx.conf`, in the http context
echo -e 'lua_package_path "/etc/nginx/lib/lua/?.lua;;";' >/etc/nginx/conf.d/lua_package_path.conf
fi
# Restart Nginx
systemctl restart nginx
# Block Nginx from being installed via APT
if [[ $(lsb_release -si) == "Debian" ]] || [[ $(lsb_release -si) == "Ubuntu" ]]; then
cd /etc/apt/preferences.d/ || exit 1
echo -e 'Package: nginx*\nPin: release *\nPin-Priority: -1' >nginx-block
fi
# Removing temporary Nginx and modules files
rm -r /usr/local/src/nginx
# We're done !
echo "Installation done."
exit
;;
2) # Uninstall Nginx
if [[ $HEADLESS != "y" ]]; then
while [[ $RM_CONF != "y" && $RM_CONF != "n" ]]; do
read -rp " Remove configuration files ? [y/n]: " -e -i n RM_CONF
done
while [[ $RM_LOGS != "y" && $RM_LOGS != "n" ]]; do
read -rp " Remove logs files ? [y/n]: " -e -i n RM_LOGS
done
fi
# Stop Nginx
systemctl stop nginx
# Removing Nginx files and modules files
rm -r /usr/local/src/nginx \
/usr/sbin/nginx* \
/usr/local/bin/luajit* \
/usr/local/include/luajit* \
/etc/logrotate.d/nginx \
/var/cache/nginx \
/lib/systemd/system/nginx.service \
/etc/systemd/system/multi-user.target.wants/nginx.service
# Reload systemctl
systemctl daemon-reload
# Remove conf files
if [[ $RM_CONF == 'y' ]]; then
rm -r /etc/nginx/
fi
# Remove logs
if [[ $RM_LOGS == 'y' ]]; then
rm -r /var/log/nginx
fi
# Remove Nginx APT block
if [[ $(lsb_release -si) == "Debian" ]] || [[ $(lsb_release -si) == "Ubuntu" ]]; then
rm /etc/apt/preferences.d/nginx-block
fi
# We're done !
echo "Uninstallation done."
exit
;;
3) # Update the script
wget https://raw.githubusercontent.com/Angristan/nginx-autoinstall/master/nginx-autoinstall.sh -O nginx-autoinstall.sh
chmod +x nginx-autoinstall.sh
echo ""
echo "Update done."
sleep 2
./nginx-autoinstall.sh
exit
;;
4) # Install Bad Bot Blocker
echo ""
echo "This will install Nginx Bad Bot and User-Agent Blocker."
echo ""
echo "First step is to download the install script."
echo ""
read -n1 -r -p " press any key to continue..."
echo ""
wget https://raw.githubusercontent.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker/master/install-ngxblocker -O /usr/local/sbin/install-ngxblocker
chmod +x /usr/local/sbin/install-ngxblocker
echo ""
echo "Install script has been downloaded."
echo ""
echo "Second step is to run the install-ngxblocker script in DRY-MODE,"
echo "which will show you what changes it will make and what files it will download for you.."
echo "This is only a DRY-RUN so no changes are being made yet."
echo ""
read -n1 -r -p " press any key to continue..."
echo ""
cd /usr/local/sbin || exit 1
./install-ngxblocker
echo ""
echo "Third step is to run the install script with the -x parameter,"
echo "to download all the necessary files from the repository.."
echo ""
read -n1 -r -p " press any key to continue..."
echo ""
cd /usr/local/sbin/ || exit 1
./install-ngxblocker -x
chmod +x /usr/local/sbin/setup-ngxblocker
chmod +x /usr/local/sbin/update-ngxblocker
echo ""
echo "All the required files have now been downloaded to the correct folders,"
echo " on Nginx for you directly from the repository."
echo ""
echo "Fourth step is to run the setup-ngxblocker script in DRY-MODE,"
echo "which will show you what changes it will make and what files it will download for you."
echo "This is only a DRY-RUN so no changes are being made yet."
echo ""
read -n1 -r -p " press any key to continue..."
echo ""
cd /usr/local/sbin/ || exit 1
./setup-ngxblocker -e conf
echo ""
echo "Fifth step is to run the setup script with the -x parameter,"
echo "to make all the necessary changes to your nginx.conf (if required),"
echo "and also to add the required includes into all your vhost files."
echo ""
read -n1 -r -p " press any key to continue..."
echo ""
cd /usr/local/sbin/ || exit 1
./setup-ngxblocker -x -e conf
echo ""
echo "Sixth step is to test your nginx configuration"
echo ""
read -n1 -r -p " press any key to continue..."
echo ""
/usr/sbin/nginx -t
echo ""
echo "Seventh step is to restart Nginx,"
echo "and the Bot Blocker will immediately be active and protecting all your web sites."
echo ""
read -n1 -r -p " press any key to continue..."
echo ""
/usr/sbin/nginx -t && systemctl restart nginx
echo "That's it, the blocker is now active and protecting your sites from thousands of malicious bots and domains."
echo ""
echo "For more info, visit: https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker"
echo ""
sleep 2
exit
;;
*) # Exit
exit
;;
esac