scriptbox/nginquic
2022-03-09 10:59:40 +07:00
..
build.sh nginquic : cover a case that there's no nginx modules folder already 2022-03-08 14:59:31 +07:00
configure.sh nginquic : remove unused modules from modules.sh 2022-01-31 09:27:21 +07:00
modules.conf nginquic : remove un-build modules in modules.conf 2022-01-31 19:42:22 +07:00
modules.sh nginquic : remove unused modules from modules.sh 2022-01-31 09:27:21 +07:00
packages.sh nginquic : add geoip Library modules 2022-01-31 19:27:39 +07:00
README.md nginquic : current status 2022-03-09 10:59:40 +07:00

Status : Succeeded (As of ace356d5e99af0716b3974611b1e55ef115eddac at Mar 9 2022)

Note to Self :

This Script is using to build nginx with quic and some modules i'm currently using .

  • Please Purge existed Nginx before build
  • Please don't named any folder in your Home Folder to 'nginquic', because this folder will be removed first once script is run

OS : Debian

curl https://raw.githubusercontent.com/minoplhy/script/main/nginquic/build.sh | bash

systemd Template: Location : /lib/systemd/system/nginx.service

# Stop dance for nginx
# =======================
#
# ExecStop sends SIGSTOP (graceful stop) to the nginx process.
# If, after 5s (--retry QUIT/5) nginx is still running, systemd takes control
# and sends SIGTERM (fast shutdown) to the main process.
# After another 5s (TimeoutStopSec=5), and if nginx is alive, systemd sends
# SIGKILL to all the remaining processes in the process group (KillMode=mixed).
#
# nginx signals reference doc:
# http://nginx.org/en/docs/control.html
#
[Unit]
Description=A high performance web server and a reverse proxy server
Documentation=man:nginx(8)
After=network.target nss-lookup.target

[Service]
Type=forking
PIDFile=/run/nginx.pid
ExecStartPre=/usr/sbin/nginx -t -q -g 'daemon on; master_process on;'
ExecStart=/usr/sbin/nginx -g 'daemon on; master_process on;'
ExecReload=/usr/sbin/nginx -g 'daemon on; master_process on;' -s reload
ExecStop=-/sbin/start-stop-daemon --quiet --stop --retry QUIT/5 --pidfile /run/nginx.pid
TimeoutStopSec=5
KillMode=mixed

[Install]
WantedBy=multi-user.target