Start, Stop, and Restart Nginx

#View Status of Your Nginx Server
systemctl status nginx

#Stop and Start Nginx
systemctl stop nginx
systemctl start nginx

#Gracefully Restart Nginx
systemctl reload nginx

#Force Restart Nginx
systemctl restart nginx