/etc/systemd/system/multi-user.target.wants
NameSizeModeActions
atd.service3470644editdlrm
console-setup.service3120644editdlrm
containerd.service14210644editdlrm
cron.service3160644editdlrm
dmesg.service3580644editdlrm
docker.service17270644editdlrm
droplet-agent.service3580644editdlrm
grub-initrd-fallback.service3360644editdlrm
irqbalance.service4540644editdlrm
lxd-agent-9p.service4890644editdlrm
lxd-agent.service4980644editdlrm
mysql.service5290644editdlrm
networkd-dispatcher.service2580644editdlrm
nginx.service10130644editdlrm
ondemand.service3620644editdlrm
open-vm-tools.service4890644editdlrm
php7.4-fpm.service5230644editdlrm
pollinate.service3550644editdlrm
remote-fs.target5220644editdlrm
rsync.service2550644editdlrm
rsyslog.service4350644editdlrm
secureboot-db.service6040644editdlrm
snap-core18-2999.mount3260644editdlrm
snap-core18-3084.mount3260644editdlrm
snap-core20-2866.mount3260644editdlrm
snap-core20-2922.mount3260644editdlrm
snap-lxd-40364.mount3200644editdlrm
snap-lxd-40526.mount3200644editdlrm
snap-snapd-27710.mount3260644editdlrm
snap-snapd-27738.mount3260644editdlrm
snap.lxd.activate.service4680644editdlrm
snapd.aa-prompt-listener.service-0editdlrm
snapd.apparmor.service12440644editdlrm
snapd.autoimport.service4320644editdlrm
snapd.core-fixup.service3690644editdlrm
snapd.recovery-chooser-trigger.service5500644editdlrm
snapd.seeded.service3080644editdlrm
snapd.service6070644editdlrm
ssh.service5380644editdlrm
systemd-networkd.service19980644editdlrm
systemd-resolved.service17310644editdlrm
ufw.service2660644editdlrm
unattended-upgrades.service3770644editdlrm
Edit: /usr/lib/systemd/system/nginx.service (1013B)
# 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 [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