snippets/old_snippets/restart-nginx.en.md

417 B

title date draft snippet_types
restart nginx 2021-02-07T00:33:09+01:00 false
nginx

Normally I use

$ sudo systemctl restart nginx

but recently I had to take more drastic measures.

sudo pkill -f nginx & wait $!
sudo systemctl start nginx

source -- stackoverflow