Info
Install
Install Latest NGINX Version
sudo add-apt-repository -y ppa:nginx/stable
sudo apt-get update -y
sudo apt install -y nginx
Check It Is Running
systemctl status nginx
Managing
Stop nginx
sudo systemctl stop nginx
Start nginx
sudo systemctl start nginx
Stop and start nginx
sudo systemctl restart nginx
Reload without dropping connections
sudo systemctl reload nginx
Disable the service to start up at boot
sudo systemctl disable nginx
Re-enable the service to start up at boot
sudo systemctl enable nginx