Install Nginx Web Server In Linux-Mint ( Ubuntu)
Nginx is a lightweight server better than apache and can be set up for reverse proxy.
Command for installing PPA dependencies :
sudo apt-get -y install python-software-properties
Command for insattling Nginx via PPA:
sudo apt-add-repository ppa:nginx/stable
sudo apt-get update
sudo apt-get install nginx
To check Nginx Running or Not ?
sudo service nginx status
To start or restart nginx:
sudo service nginx start
sudo service nginx restart
To stop Nginx :
sudo service nginx stop
# Visit my blog for more updates -
Nginx ("engine X") is a high-performance web and reverse proxy server created by Igor Sysoev. It can be used both as a standalone web server and as a proxy to reduce the load on back-end HTTP or mail servers.