Installing NginX

Installing Nginx on Ubuntu

sudo apt update
Bash
sudo apt upgrade
Bash
sudo apt install nginx
Bash

Enable enginx at every system start

sudo systemctl enable nginx
Bash

Start nginx

sudo systemctl start nginx
Bash

Status

sudo systemctl status nginx
Bash

Restart

sudo systemctl restart nginx
Bash

Reboot VPS server (if needed)

sudo systemctl reboot
Bash