0 votes
How to install Nginx on ubuntu?
in NGINX by

1 Answer

0 votes
Nginx can be installed using the apt packaging system.

$ Sudo apt install Nginx //this command is used to install Nginx.

To enable the Nginx, use the following command.

$ sudo ufw allow ‘Nginx HTTP’
by
...