-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
nginx-autoinstall.sh
606 lines (538 loc) · 18.4 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
#!/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=1.25.5
NGINX_STABLE_VER=1.26.0
LIBRESSL_VER=3.9.1
OPENSSL_VER=3.3.0
HEADERMOD_VER=0.37
LIBMAXMINDDB_VER=1.9.1
GEOIP2_VER=3.4
# Define installation paramaters for headless install (fallback if unspecifed)
if [[ $HEADLESS == "y" ]]; then
OPTION=${OPTION:-1}
NGINX_VER=${NGINX_VER:-1}
BROTLI=${BROTLI:-n}
HEADERMOD=${HEADERMOD:-n}
GEOIP=${GEOIP:-n}
FANCYINDEX=${FANCYINDEX:-n}
CACHEPURGE=${CACHEPURGE:-n}
WEBDAV=${WEBDAV:-n}
VTS=${VTS:-n}
zstd=${zstd:-n}
MODSEC=${MODSEC:-n}
RTMP=${RTMP:-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 "######################################################"
echo "# Welcome to the nginx-autoinstall script. #"
echo "# For Debian 10+ and Ubuntu 16+ #"
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) Exit"
echo ""
while [[ $OPTION != "1" && $OPTION != "2" && $OPTION != "3" && $OPTION != "4" ]]; do
read -rp "Select an option [1-4]: " 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" ]]; do
read -rp "Select an option [1-2]: " NGINX_VER
done
fi
case $NGINX_VER in
1)
NGINX_VER=$NGINX_STABLE_VER
;;
2)
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 [[ $BROTLI != "y" && $BROTLI != "n" ]]; do
read -rp " Brotli [y/n]: " -e BROTLI
done
while [[ $HEADERMOD != "y" && $HEADERMOD != "n" ]]; do
read -rp " Headers More $HEADERMOD_VER [y/n]: " -e HEADERMOD
done
while [[ $GEOIP != "y" && $GEOIP != "n" ]]; do
read -rp " GeoIP [y/n]: " -e GEOIP
done
while [[ $FANCYINDEX != "y" && $FANCYINDEX != "n" ]]; do
read -rp " Fancy index [y/n]: " -e FANCYINDEX
done
while [[ $CACHEPURGE != "y" && $CACHEPURGE != "n" ]]; do
read -rp " ngx_cache_purge [y/n]: " -e CACHEPURGE
done
while [[ $WEBDAV != "y" && $WEBDAV != "n" ]]; do
read -rp " nginx WebDAV [y/n]: " -e WEBDAV
done
while [[ $VTS != "y" && $VTS != "n" ]]; do
read -rp " nginx VTS [y/n]: " -e VTS
done
while [[ $zstd != "y" && $zstd != "n" ]]; do
read -rp " zstd-Nginx module for the Zstandard compression.[y/n]: " -e zstd
done
while [[ $RTMP != "y" && $RTMP != "n" ]]; do
read -rp " nginx RTMP [y/n]: " -e -i n RTMP
done
while [[ $MODSEC != "y" && $MODSEC != "n" ]]; do
read -rp " nginx ModSecurity [y/n]: " -e MODSEC
done
if [[ $MODSEC == 'y' ]]; then
read -rp " Enable nginx ModSecurity? [y/n]: " -e MODSEC_ENABLE
fi
if [[ $SSLVER != 'y' ]]; then
echo ""
echo "Choose your OpenSSL implementation:"
echo "LibreSSL library is recommended for correct http//3"
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 3 SSL
done
fi
fi
if [[ $SSLVER != 'y' ]]; then
case $SSL in
1) ;;
2)
OPENSSL=y
;;
3)
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 p7zip-full ca-certificates libsodium-dev wget curl libpcre3 libbrotli-dev libpcre3-dev autoconf unzip automake libtool tar git libssl-dev zlib1g-dev uuid-dev lsb-release libxml2-dev libxslt1-dev uthash-dev cmake flex bison gcc-multilib libzstd-dev
if [[ $MODSEC == 'y' ]]; then
apt-get install -y apt-utils libcurl4-openssl-dev libgeoip-dev liblmdb-dev libpcre2-dev libyajl-dev pkgconf
fi
#Brotli
if [[ $BROTLI == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
git clone --recurse-submodules -j8 https://github.com/google/ngx_brotli
cd ngx_brotli/deps/brotli || exit 1
mkdir out && cd out || exit 1
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DCMAKE_C_FLAGS="-Ofast -m64 -march=native -mtune=native -flto -funroll-loops -ffunction-sections -fdata-sections -Wl,--gc-sections" -DCMAKE_CXX_FLAGS="-Ofast -m64 -march=native -mtune=native -flto -funroll-loops -ffunction-sections -fdata-sections -Wl,--gc-sections" -DCMAKE_INSTALL_PREFIX=./installed ..
cmake --build . --config Release --target brotlienc
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
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
vremya=$(date +"%Y-%m")
wget https://download.db-ip.com/free/dbip-country-lite-$vremya.mmdb.gz
wget https://download.db-ip.com/free/dbip-city-lite-$vremya.mmdb.gz
7z x dbip-country-lite-$vremya.mmdb.gz
7z x dbip-city-lite-$vremya.mmdb.gz
mkdir /opt/geoip
mv dbip-country-lite-$vremya.mmdb /opt/geoip/
mv dbip-city-lite-$vremya.mmdb /opt/geoip/
rm dbip-country-lite-$vremya.mmdb.gz
rm dbip-city-lite-$vremya.mmdb.gz
fi
# Cache Purge
if [[ $CACHEPURGE == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
git clone https://github.com/FRiCKLE/ngx_cache_purge
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
# zstd-nginx-module https://github.com/facebook/zstd https://github.com/tokers/zstd-nginx-module
if [[ $zstd == 'y' ]]; then
cd /usr/local/src/nginx/modules || exit 1
git clone https://github.com/tokers/zstd-nginx-module.git
cd /usr/local/src || exit 1
git clone https://github.com/facebook/zstd.git
cd /usr/local/src/zstd || exit 1
make
make install
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 --with-maxmind=no
make
make install
mkdir -p /etc/nginx/modsec/
wget -P /etc/nginx/modsec/ https://raw.githubusercontent.com/FuriousWarrior/NginxFastStart/master/conf/main.conf
wget -P /etc/nginx/modsec/ https://raw.githubusercontent.com/FuriousWarrior/NginxFastStart/master/conf/modsecurity.conf
# Enable ModSecurity in Nginx
if [[ $MODSEC_ENABLE == 'y' ]]; then
sed -i 's/SecRuleEngine DetectionOnly/SecRuleEngine On/' /etc/nginx/modsec/modsecurity.conf
fi
# OWASP Rules
wget -P /etc/nginx/modsec/ https://github.com/coreruleset/coreruleset/archive/refs/tags/v4.1.0.tar.gz
cd /etc/nginx/modsec/ || exit 1
tar -xf v4.1.0.tar.gz
cd coreruleset-4.1.0 || exit 1
cp crs-setup.conf.example crs-setup.conf
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/FuriousWarrior/NginxFastStart/master/conf/nginx.conf
fi
cd /usr/local/src/nginx/nginx-${NGINX_VER} || exit 1
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=-fstack-protector \
--with-cc-opt=-fstack-protector-strong \
--with-cc-opt=--param=ssp-buffer-size=4 \
--with-cc-opt=-Wformat \
--with-cc-opt=-Werror=format-security \
--with-cc-opt=-Werror=implicit-function-declaration \
--with-cc-opt=-fPIC \
--with-cc-opt=-Werror=deprecated-declarations \
--with-cc-opt=-Wno-error=name_of_warning \
--with-cc-opt=-Wno-ignored-qualifiers"
NGINX_MODULES="--with-threads \
--with-compat \
--with-file-aio \
--with-http_ssl_module \
--with-http_v2_module \
--with-http_v3_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 \
--with-http_gunzip_module \
--with-stream \
--with-stream_ssl_module \
--with-stream_realip_module\
--with-stream_ssl_preread_module"
# 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}"
)
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 [[ $NGXSUBFILTER == 'y' ]]; then
NGINX_MODULES=$(
echo "$NGXNGINX_MODULES"
echo "--add-module=/usr/local/src/nginx/modules/ngx_http_substitutions_filter_module"
)
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 [[ $zstd == 'y' ]]; then
NGINX_MODULES=$(
echo "$NGINX_MODULES"
echo "--add-module=/usr/local/src/nginx/modules/zstd-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 [[ $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
./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/FuriousWarrior/NginxFastStart/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/FuriousWarrior/NginxFastStart/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/ssl ]]; then
mkdir -p /etc/nginx/ssl
fi
if [[ ! -d /etc/nginx/global ]]; then
mkdir -p /etc/nginx/global
fi
if [[ ! -d /etc/nginx/conf.d ]]; then
mkdir -p /etc/nginx/conf.d
fi
if [[ ! -e /etc/nginx/ssl/ssl.conf ]]; then
cd /etc/nginx/ssl || exit 1
wget https://raw.githubusercontent.com/FuriousWarrior/NginxFastStart/master/conf/ssl.conf
fi
if [[ ! -e /etc/nginx/global/security.conf ]]; then
cd /etc/nginx/global || exit 1
wget https://raw.githubusercontent.com/FuriousWarrior/NginxFastStart/master/conf/security.conf
fi
if [[ ! -e /etc/nginx/global/global.conf ]]; then
cd /etc/nginx/global || exit 1
wget https://raw.githubusercontent.com/FuriousWarrior/NginxFastStart/master/global/global.conf
fi
if [[ ! -e /etc/nginx/global/proxy.conf ]]; then
cd /etc/nginx/global || exit 1
wget https://raw.githubusercontent.com/FuriousWarrior/NginxFastStart/master/global/proxy.conf
fi
if [[ ! -e /etc/nginx/global/php_fastcgi.conf ]]; then
cd /etc/nginx/global || exit 1
wget https://raw.githubusercontent.com/FuriousWarrior/NginxFastStart/master/global/php_fastcgi.conf
fi
if [[ ! -e /etc/nginx/global/python_uwsgi.conf ]]; then
cd /etc/nginx/global || exit 1
wget https://raw.githubusercontent.com/FuriousWarrior/NginxFastStart/master/global/python_uwsgi.conf
fi
# Example Configs
if [[ ! -e /etc/nginx/sites-available/example.com.conf ]]; then
cd /etc/nginx/sites-available || exit 1
wget https://raw.githubusercontent.com/FuriousWarrior/NginxFastStart/master/sites-available/example.com.conf
fi
if [[ ! -e /etc/nginx/sites-available/example.django.com.conf ]]; then
cd /etc/nginx/sites-available || exit 1
wget https://raw.githubusercontent.com/FuriousWarrior/NginxFastStart/master/sites-available/example.django.com.conf
fi
if [[ ! -e /etc/nginx/sites-available/example.php.com.conf ]]; then
cd /etc/nginx/sites-available || exit 1
wget https://raw.githubusercontent.com/FuriousWarrior/NginxFastStart/master/sites-available/example.php.com.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 RM_CONF
done
while [[ $RM_LOGS != "y" && $RM_LOGS != "n" ]]; do
read -rp " Remove logs files ? [y/n]: " -e RM_LOGS
done
fi
# Stop Nginx
systemctl stop nginx
# Removing Nginx files and modules files
rm -r /usr/local/src/nginx \
/usr/sbin/nginx* \
/etc/logrotate.d/nginx \
/var/cache/nginx \
/lib/systemd/system/nginx.service \
/etc/systemd/system/multi-user.target.wants/nginx.service
# 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/FuriousWarrior/NginxFastStart/master/nginx-autoinstall.sh -O nginx-autoinstall.sh
chmod +x nginx-autoinstall.sh
echo ""
echo "Update done."
sleep 2
./nginx-autoinstall.sh
exit
;;
*) # Exit
exit
;;
esac