Skip to content

Install Nginx

Video Lecture

Install Nginx Proxy Install Nginx Proxy

Description

We will use Nginx as the web server.

Check if Nginx is installed.

#
nginx -v

No, then install it with

#
apt install nginx

Now check its version again.

#
nginx -v

Now check it's status.

#
sudo service nginx status

If all is OK, the you can visit your servers IP address in the browser.

Visit http://[your ip address]

You should see the default Nginx web page.

Comments