*** 3791 0.0 0.1 6352 876 pts/0 S+ 13:44 0:00 \_ grep --color=auto nginx
www-data 764 0.0 0.0 6604 472 ? Ss 09:03 0:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
www-data 765 0.0 0.1 6768 920 ? S 09:03 0:00 \_ nginx: worker process
*** 3791 0.0 0.1 6352 876 pts/0 S+ 13:44 0:00 \_ grep --color=auto nginx
www-data 764 0.0 0.0 6604 472 ? Ss 09:03 0:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
www-data 765 0.0 0.1 6768 920 ? S 09:03 0:00 \_ nginx: worker process
***@srv3:~$ systemctl cat nginx.service
# /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 (www-data)
After=network.target
[Service]
User=www-data
Group=www-data
Type=forking
PIDFile=/run/nginx.pid
PermissionsStartOnly=true
#ExecStartPre=/usr/sbin/nginx -t -q -g 'daemon on; master_process on;'
ExecStartPre=/bin/touch /run/nginx.pid
ExecStartPre=/bin/chown www-data:www-data /run/nginx.pid
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
nginx.org/ru/linux_packages.html
посвежее базовых как обычно.