-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx.service
32 lines (30 loc) · 1.17 KB
/
nginx.service
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
# 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=pageboard.service network.target nss-lookup.target
[Service]
Type=forking
Restart=always
RestartSec=1
WorkingDirectory=%h/pageboard/proxy
PIDFile=%h/pageboard/proxy/nginx/nginx.pid
ExecStartPre=/usr/sbin/nginx -t -q -p nginx -c nginx.conf -g 'daemon on; master_process on;'
ExecStart=/usr/sbin/nginx -p nginx -c nginx.conf -g 'daemon on; master_process on;'
ExecReload=/usr/sbin/nginx -p nginx -c nginx.conf -g 'daemon on; master_process on;' -s reload
ExecStop=-/sbin/start-stop-daemon --quiet --stop --retry QUIT/5 --pidfile nginx.pid
TimeoutStopSec=5
KillMode=mixed
[Install]
WantedBy=default.target