an oneway automated script to build nginx built with quic support
This repository has been archived on 2023-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
minoplhy b10908df36
nginquic : closing note
2023-06-25 17:48:01 +07:00
LICENSE nginquic : push Licensee 2022-06-11 20:25:54 +07:00
README.md nginquic : closing note 2023-06-25 17:48:01 +07:00
build.sh build.sh : ditch Prompting. Didn't work with curl. 2023-03-04 01:19:13 +07:00
configure.sh modules : remove nginx-upload-progress-module completely 2022-09-20 12:25:36 +07:00
modules.conf modules : remove typo 2022-09-20 12:26:31 +07:00
modules.sh modules : remove nginx-upload-progress-module completely 2022-09-20 12:25:36 +07:00
packages.sh package.sh : use g++ instead of c++ 2022-11-29 22:11:53 +07:00

README.md

Status : Deprecated, QUIC branch is closed and merged to main Nginx repository. also, the script is no longer working. Because of the changes.

Btw, Future maintainance of the script will continue here: https://github.com/minoplhy/scriptbox/tree/main/nginx_build_script. Though the main purpose is for personal usage, this might not suit you well.

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

export Nginx_Install=yes  # This variable is required if you want Nginx to be installed scriptibly (on Debian-based systems).
curl https://raw.githubusercontent.com/minoplhy/nginquic/main/build.sh > ~/nginquic.sh
bash ~/nginquic.sh

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