I went through some manuals and I didn't understand yet. How do I disable autostart nginx service?
2 Answers
Try this command:
sudo update-rc.d -f nginx disable 7 Update:
I made changes to supports more distributions:
use this:
sudo systemctl disable nginxIt will disable it and if you like to stop running service use this:
sudo systemctl stop nginxworks on Ubuntu and any Systemd based distributions
4