Complete the command to update the package list before installing Nginx.
sudo [1] updateThe apt command is used to manage packages on Debian-based systems. Running sudo apt update refreshes the package list.
Complete the command to install Nginx using apt.
sudo apt [1] nginxThe install option tells apt to install the specified package, here nginx.
Fix the error in the command to start the Nginx service.
sudo systemctl [1] nginxTo run Nginx, you need to start its service using systemctl.
Fill both blanks to check the status of the Nginx service.
sudo systemctl [1] [2]
The command sudo systemctl status nginx shows if Nginx is running or stopped.
Fill all three blanks to enable Nginx to start automatically on boot and then verify it.
sudo systemctl [1] nginx && sudo systemctl [2] nginx && sudo systemctl [3] nginx
First, enable makes Nginx start on boot. Then start runs it now. Finally, status checks if it is running.